Show the last 5 posts or whatever number you specify using the following code, it loops through all of the posts. First method I devised: <ul id=”recent-items”> <?php $recentPosts = new WP_Query(); $recentPosts->query(‘showposts=10’); ?> <!–t added set the incremental counter<=? to the number of recent posts you […]