List 10 Most Recent Posts in Wordpress Sidebar

76

No plugin needed, you can list however many recent posts by title using the wp_get_archives function. Insert this code into your sidebar.php

<ul> <?php wp_get_archives(’type=postbypost&limit=10'); ?> </ul>

The limit can be adjust to any number of posts.

0 comments ↓

If you found this post useful click the share this button. Contribute below by adding a comment, no registration is required.


There are no comments yet...Kick things off by filling out the form below.

Leave a Comment