WordPress is becoming most popular CMS these days. It is very easy to use and great search engine support.
Last year wordpress left behind all the cms. Many people are thinking about how to keep the there wordpress site impressive.
In this article I am going tell you the 5 best tips about how to keep your wordpress blog or website impressive.
1. Create a widget controlled footer that keeps visitors busy on site
Widget controlled footer is not new thing in wordpress website but still having footer with multiple information is good.
You should keep the following footer widget in website.
1. Recent posts
2. Popular Post
3. Recent Comments
For recent comments you can use following code in footer without plugin
<?php
$my_query = new WP_Query('showposts=15');
while ($my_query->have_posts()) : $my_query->the_post();$do_not_duplicate = $post->ID;
?>
For popular post We can use the wp-popular-post plugin. Using that plugin use can use following code in your website
<?php get_mostpopular("range=weekly&order_by=views&stats_comments=0&limit=20"); ?>
For showing the Recent comments you can use following code without any wordpress plugin. You can change the css code as per your site layout.
<?php
$total_comments = $wpdb->get_results("SELECT comment_date_gmt, comment_author, comment_ID, comment_post_ID, comment_author_email, comment_content FROM $wpdb->comments WHERE comment_approved = '1' and comment_type != 'trackback' ORDER BY comment_date_gmt DESC LIMIT 11");
$comment_total = count($total_comments);
echo '<ul>';
for ($comments = 0; $comments < $comment_total; $comments++) {
echo "<div style='clear:both;width:355px;padding-top:3px;'><div style='float:left;width:35px;'>";
echo get_avatar($total_comments[$comments]->comment_author_email,$size='32',$default='<path_to_url>' );
echo "</div> <div style='width:320px;'>";
echo '<li>';
echo $total_comments[$comments]->comment_author . ' says ';
echo '<a href="'. get_permalink($total_comments[$comments]->comment_post_ID) . '#comment-' . $total_comments[$comments]->comment_ID . '">';
// echo get_the_title($total_comments[$comments]->comment_post_ID);
echo $total_comments[$comments]->comment_content;
echo '</a></li></div></div>';
}
echo '</ul>'
?>
2. Display the interesting images on the homepage
You can increase your wordpress site traffic and website will look cool with best custom made images.
You can use following code for showing the images on homepage.
First you need to open the functions.php file from your wordpress theme folder and copy paste following code in that file.
function get_first_image($id) {
$PostID = $id;
$all_images =& get_children('post_type=attachment&post_mime_type=image&post_parent=' . $PostID );
if($all_images) {
$arr_of_all_images = array_keys($all_images);
$firstImage = $arr_of_all_images[0];
$thumb_url = wp_get_attachment_thumb_url($firstImage);
$First_thumb_image = '<a href="' . get_permalink() . '">' .
'<img src="' . $thumb_url . '" width="150" height="150" alt="Thumbnail Image" title="Thumbnail Image" />' .
'</a>';
echo $First_thumb_image;
}
}
In your index.php file you need to copy paste the following code for showing the image.
<?php get_first_image($post->ID); ?>
3. Add social media links to the bottom of post
Visitors always want to bookmark the website or your posts.
So keeping that very simple adding the social media links to your posts is very nice.
Finding the good social media icons as per your website is very easy with google.
There are some nice wordpress plugins available for adding the social media icons but recommend not to use any wordpress plugin.
Or you can use following code.
<style>
.social_icons{ clear:both; border-top:2px solid #ccc; color:#2266BB; font-size:18px;font-weight:bold;line-height:30px;}
.social_icons ul li {float:left; padding-right:8px;}
</style>
<div >
Bookmark & Share This Post
<ul>
<li><a rel="nofollow" target="_blank" href="http://images.wordpressapi.com/feed" title="RSS"><img src="http://images.wordpressapi.com/rss_32.png" title="RSS" alt="RSS" /></a></li>
<li><a rel="nofollow" target="_blank" href="http://del.icio.us/post?url=<?php the_permalink() ?>&title=<?php echo urlencode(the_title('','', false)) ?>" title="del.icio.us"><img src="http://images.wordpressapi.com/delicious_32.png" title="del.icio.us" alt="del.icio.us" /></a></li>
<li><a rel="nofollow" target="_blank" href="http://www.stumbleupon.com/submit?url=<?php the_permalink() ?>&title=<?php echo urlencode(the_title('','', false)) ?>" title="StumbleUpon"><img src="http://images.wordpressapi.com/stumbleupon_32.png" title="StumbleUpon" alt="StumbleUpon" /></a></li>
<li><a rel="nofollow" target="_blank" href="http://digg.com/submit?phase=2&url=<?php the_permalink() ?>&title=<?php echo urlencode(the_title('','', false)) ?>" title="Digg"><img src="http://images.wordpressapi.com/digg_32.png" title="Digg" alt="Digg" /></a></li>
<li><a rel="nofollow" target="_blank" href="http://twitthis.com/twit?url=<?php the_permalink() ?>" title="TwitThis"><img src="http://images.wordpressapi.com/twitter_32.png" title="TwitThis" alt="TwitThis" /></a></li>
<li><a rel="nofollow" target="_blank" href="http://www.mixx.com/submit?page_url=<?php the_permalink() ?>&title=<?php echo urlencode(the_title('','', false)) ?>" title="Mixx"><img src="http://images.wordpressapi.com/mixx_32.png" title="Mixx" alt="Mixx" /></a></li>
<li><a rel="nofollow" target="_blank" href="http://technorati.com/faves?add=<?php the_permalink() ?>" title="Technorati"><img src="http://images.wordpressapi.com/technorati_32.png" title="Technorati" alt="Technorati" /></a></li>
<li><a rel="nofollow" target="_blank" href="http://www.facebook.com/sharer.php?u=<?php the_permalink() ?>&t=<?php echo urlencode(the_title('','', false)) ?>" title="Facebook"><img src="http://images.wordpressapi.com/facebook_32.png" title="Facebook" alt="Facebook" /></a></li>
<li><a rel="nofollow" target="_blank" href="http://www.newsvine.com/_tools/seed&save?u=<?php the_permalink() ?>&h=<?php echo urlencode(the_title('','', false)) ?>" title="NewsVine"><img src="http://images.wordpressapi.com/newsvine_32.png" title="NewsVine" alt="NewsVine" /></a></li>
<li><a rel="nofollow" target="_blank" href="http://reddit.com/submit?url=<?php the_permalink() ?>&title=<?php echo urlencode(the_title('','', false)) ?>" title="Reddit"><img src="http://images.wordpressapi.com/reddit_32.png" title="Reddit" alt="Reddit" /></a></li>
<li><a rel="nofollow" target="_blank" href="http://www.google.com/bookmarks/mark?op=edit&bkmk=<?php the_permalink() ?>&title=<?php echo urlencode(the_title('','', false)) ?>" title="Google"><img src="http://images.wordpressapi.com/google_32.png" title="Google" alt="Google" /></a></li>
<li><a rel="nofollow" target="_blank" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=<?php the_permalink() ?>&=<?php echo urlencode(the_title('','', false)) ?>" title="YahooMyWeb"><img src="http://images.wordpressapi.com/yahoobuzz_32.png" title="YahooMyWeb" alt="YahooMyWeb" /></a></li>
<li><a rel="nofollow" target="_blank" href="mailto:?subject=<?php echo urlencode(the_title('','', false)) ?>&body=<?php the_permalink() ?>" title="E-mail this story to a friend!"><img src="http://images.wordpressapi.com/email_32.png" title="E-mail this story to a friend!" alt="E-mail this story to a friend!" /></a></li>
</ul>
</div>
4. Install the Tweetmeme style Twitter button to your posts
Twitter is very popular these days. Twitter is micro blogging website.
So many people want to share there articles with twitter and Many visitors want to share article with there friends and follower by tweeting the article.
I recommend to use the tweetmeme wordpress plugin for putting the Twitter button to your posts.
You can download the tweetmeme wordpress plugin from following URL
http://tweetmeme.com
5. Always show the Author information with photo
Many visitors want to know about author. Keeping Author’s information on wordpress website is really good idea.
That will become your website more interesting the user friendly to visitors.
Some people like the specific writing style of author and They want know more information about Author.
In wordpress keeping the users photo and information I will suggest to use the user-photo wordpress plugin.
http://wordpress.org/extend/plugins/user-photo/
After adding following plugin you can use following code in your wordpress posts.
<?php userphoto_the_author_photo(); ?>






Pingback: Here’s what the fuss is all about
Pingback: Practical Weight Loss. | Fitness and Health
Pingback: Authoritative iPad Buyers’ Guide Joins iLounge.com’s Brand New iPod + iPhone Book 5
Pingback: Community Calendar | Mpqr
Pingback: tom cruise
Pingback: Market Commentary and Intraday News
Pingback: One Marketing Secret That Will Boost Your Profits – Or It’s For Free. | The SEO Blog Expert
Pingback: www.Richard-Weaving.com » iPad may restore ad money – publishers
I can see that you are an expert at your field! I am launching a website soon, and your information will be very useful for me.. Thanks for all your help and wishing you all the success.
Pingback: Forex Traders: What You Need To Stop Struggling And Start Profiting | Flexible Investment Strategies
I can’t but agree.I always wanted to write in my site something like that but I guess you’r faster.
[...] 5 Tips to Improve Your WordPress blog Traffic and look … [...]
Pingback: 5 Tips to Improve Your WordPress blog Traffic and look ... | Intenseblog.com
thanks to your ideas , i¡¯d adore to adhere to your weblog as usually as i can.possess a good day
I’ve just subscribed to your RSS feed. I love your content.
Pretty insightful post. Never thought that it was this simple after all. I had spent a good deal of my time looking for someone to explain this subject clearly and you’re the only one that ever did that. Kudos to you! Keep it up
Heard about this site from my friend. He pointed me here and told me I’d find what I need. He was right! I got all the questions I had, answered. Didn’t even take long to find it. Love the fact that you made it so easy for people like me. More power
you have a good taste.
It is strange just how many websites the internet has on this topic I don’t know if I will ever have to come back, but it’s nice to know I found the one that has a little useful information if this should come up for me again
Написано конечно всё правильно, хотя и только поверхностно. В любом случае спасибо
Автор, Вы вообще модерируете блог? Столько комментов не в тему
Конкретика конечно бы не помешала, правильно предыдущий постер написал
Очень самокритично, нехватает только добавить видео
These are some great acne tips. I’m going to try them, thanks!
Hopefully these acne tips will help me cure my case. It’s so embarassing.
Hi!
Interesing article. I look forward to further development of the site.
I bookmarked this internet site a while ago simply because of the superior content and I have certainly not been frustrated. Continue the wonderful .
Вот что-то подобное у меня уже неделю из головы не выходит!
Heard about this site from my friend. He pointed me here and told me I’d find what I need. He was right! I got all the questions I had, answered. Didn’t even take long to find it. Love the fact that you made it so easy for people like me. More power
I’m attracted in having website link on this domain. If you please speak to me with the quote. Many thanks.
I can put link of your site freely. If your website is providing good information..
wow, awesome post, I was wondering how to cure acne naturally. and found your site by bing, many userful stuff here, now i have got some idea. bookmarked and also signed up your rss. keep us updated.
Hi VEry nice posts i’sure i’sts nice..
I am really thankful to the author of this post for making this lovely and informative article live here for us. We really appreciate ur effort. Keep up the good work. . . .
Very useful informations about these subject. I have found them with googling and you seems number one of these subjects ! . . .
Great post!
Бесплатный совет: заведи у себя в блоге рубрику типа “самые горячие обсуждения” или что-то в этом роде. Там можно будет комментировать самые обсуждаемые темы блога…
That is some inspirational stuff. Never knew that opinions could be this varied. Thanks for all the enthusiasm to offer such helpful information here.
After reading this article I am sure I can improve my wordpress blog a lot. This will help me.
Hello,
I wanted to say that I have been reading for a while and I would like to sign up for the feed. I’ll give it a try but I will need some help. This is a terrific find and I would hate to lose touch, and maybe never discover it again.
Anyway, thanks again and I look forward to reading again sometime!
I completely agree with the above comment, the internet is with a doubt growing into the the majority of important medium of communication across the globe and its due to sites like this that ideas are spreading so quickly. Best wishes, Chantay.
Thanks for posting. Good to see that not everyone is using RSS feeds to build their blogs
This post makes a lot of sense !
Awesome post. I so good to see someone taking the time to share this information
Nice post! You truly have a wonderful way of writing which I find captivating! I will definitely be bookmarking you and returning to your blog. In fact, your post reminded me about a strange thing that happened to me the other day. I’ll tell you about that later…
Interesting read, perhaps the best article iv’e browse today. We learn everyday cheers to you!
I was just having a conversation over this I am glad I came across this it cleared some of the questions I had.
Good! Thank you! I always wanted to write in my site something like that. Can I take part of your post to my blog?
I’ve just started off a blog, the knowledge you give on this site has aided me extremely. Thank you for all your time & work.
I’ve been checking your blog for a while now, seems like everyday I learn something new
Thanks
Hello, this is my first time i visit here. I found so many interesting in your blog especially on how to determine the topic. keep up the good work.
I’ve just started off a blog, the knowledge you give on this site has aided me extremely. Thank you for all your time & work.
really nice …good keep it up…
Of course, what a great site and informative posts, I will add backlink – bookmark this site? Regards, Reader
Awesome post. I so good to see someone taking the time to share this information