Tag Archives: function

posted in Wordpress  by

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?

  1. Create 2 instances...

posted in Wordpress  by

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