treehouse : what would you like to learn today?
Web Design Web Development iOS Development

Wordpress - Plugins that show recent posts on sidebar?

  • Are there any plugins that show your recent posts in the sidebar with the image of the post (thumbnail)?

    Thank you
  • I'm not totally sure what you mean by "image of the post (thumbnail)" but I'll start with the easy part.

    Here's the code to do the five most recent posts:

    <?php
    $postslist = get_posts('numberposts=5&order=DESC&orderby=post_date');
    foreach ($postslist as $post) :
    setup_postdata($post);
    ?>
    <li><a href=\"<?php the_permalink(); ?>\"><?php the_title(); ?></a></li>
    <?php endforeach; ?>


    If your website uses the custom fields to assign an image to a blog post, you should be able to code the image into this loop. I don't know of any program that will take a screenshot of each post and load them to your website automatically...