How to Add Related Posts and Bookmarks to Your Wordpress Blog


This is a guest post written by Kumar Saurav aka Diesel of YabBLOG where he writes about Technology, Linux, Softwares. Do visit his blog for some great tips or Subscribe to keep yourself updated.

Screenshot

Keeping it clean and simple is the what every blogger should keep in mind. This tutorial will help you to do that. A list of related posts and bookmark after every post might help boost your traffic. Here is a guide to help you create it for your WordPress blog.

1. Download wp_related_posts plugin
2. Upload it to your “/wp-content/plugins/” folder
3. Activate the plugin through the ‘Plugins’ menu in WordPress
4. Navigate to Manage > Option > WordPress Related Posts to configure plugin output as in the screenshot shown below

screenshot-2

5. Now open Design > Theme Editor > Single Post.php
6. Find “<?php the_content(’Read the rest of this entry »’); ?>” or somthing similar
7. Paste the following code for Related post

<div style=”float:left”>
<?php wp_related_posts(); ?>
</div>

8. Now paste the following code for Bookmark

<div style=”float:right;margin-left: 0px; margin-right: 70px;”>
<div>
<h3>Bookmark</h3>
<ul>
<li><a href=”http://del.icio.us/post?url=<?php echo the_permalink(); ?>”>Del.icio.us</a></li>
<li><a href=”http://digg.com/submit?url=<?php echo the_permalink(); ?>”>Digg</a></li>
<li><a href=”http://www.stumbleupon.com/submit?url=<?php echo the_permalink(); ?>”>StumbleUpon</a></li>
</ul>
</div>
</div>

And we are done with our new Clean and Simple Related Posts and Bookmarks. Hope this might increase your blog traffic.


If you are new here and like the content, you may want to subscribe to the RSS feed to get regular updates about Technology News, Tutorials, Tips and Tricks, Software Reviews, Game Reviews, Blogging.

 

Related Posts


  • Football blog
  • Introducing Nitin aka hellbender
  • Wordpress Plugin : Adhesive
  • Wordpress Plugin : BackupWordpress
  • Wordpress Plugin : Customizable Post Listings

  • 5 Comment(s)

    1. Thanks for including my post
      :)

      saurav | Sep 15, 2008 | Reply

    2. Simple tags is a very good plugin for doing this!!! Have you tried it?

      Shoban | Sep 15, 2008 | Reply

    3. Nice tip. I have related post but not bookmark on the right. It is good to put both side by side.

      Nihar | Sep 16, 2008 | Reply

    4. It would be definitely useful for a newbie… But most of the themes come integrated with all these…

      Pavan Kumar | Sep 16, 2008 | Reply

    5. Hi Madhur! Very cool post, especially the part about bookmarks.

      Bobby Revell | Sep 18, 2008 | Reply

    Post a Comment