Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Recent Posts Specific Category

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #29818
    realph
    Participant

    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.

    #80844
    TheDoc
    Member

    query_posts is the function you’re looking for:

    Code:
    <?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.

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘Back End’ is closed to new topics and replies.