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 of WP_Query class ($recent_query and $tags_query) By the help of these instances we have to create loops for recent and related posts IDs of the...
Display last posts
If you want to display five last posts from your Wordpress blog, use this function:<ul> <?php wp_get_archives('type=postbypost&limit=5'); ?> </ul>For more detailed info go...
