WordPress: Display Recent Posts Anywhere

May 10th, 2009

I wanted to display the titles of recent blog entries on my start page.
Here’s the solution I came up with:

<ul id="recent_entries">
<?php get_archives('postbypost', '5', 'html', '', '', FALSE); ?>
</ul>

'5' specifies the number of posts to be displayed.
Just a little CSS styling for the list (#recent_entries li {...}) and that’s it.

WordPress: Recent Posts