Getting Recent Posts in WordPress
Getting recent posts in you WordPress blog, is a old topic. WordPress now has a default widget to do this, but sometime we need to display recent posts outside of the widget area. It’s a simple task, you can use one line of codes to do it:
<?php wp_get_archives(’title_li=&type=postbypost&limit=10′); ?>
The function wp_get_archives() is used to display [...]