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

Recent Posts Specific Category

  • Does anyone know how I can display recent posts from a specific category with a short bit of code? I'm using WordPress if that helps.

    Thanks.
  • query_posts is the function you're looking for:

    <?php query_posts('cat=5'); ?>
    <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
    <?php the_content(); ?>
    <?php endwhile; endif; ?>


    Just gotta find the id of the category you're looking to show.