Display recent and related posts without duplicating each other
My client asked me to implement lists of recent and related posts below a single post without duplicating each other.
What do we have to do?
- Create 2 instances...
My client asked me to implement lists of recent and related posts below a single post without duplicating each other.
If you want to display five last posts from your Wordpress blog, use this function:
[php]
<ul>
<?php wp_get_archives('type=postbypost&limit=5'); ?>
</ul>
[/php]
For more detailed info go