2009
Display Recent Posts below every post
You may have seen on many WordPress blog list of “Recent post” and “Related posts” at bottom of every post. I don’t know if there is any such plugin for this.
To add 5 latests post at bottom of every post , open single.php from the theme folder. Find following codes:
<?php comments_template(); ?><?php endwhile; else: ?><p>Sorry, no posts matched your criteria.</p><?php endif; ?><?php comments_template(); ?>
<?php endwhile; else: ?>
<p>Sorry, no posts matched your criteria.</p>
<?php endif; ?>
After this add following codes:
<h2>Recent Posts</h2>
<?php query_posts(‘showposts=5′); ?>
<ul>
<?php while (have_posts()) : the_post(); ?>
<li><a href=”<?php the_permalink() ?>”><?php the_title(); ?></a></li>
<?php endwhile;?>
</ul>



