Forums

how to show entries for a category (3 posts)

  1. dreamo
    Member
    Posted 1 year ago #

    i was looking at the codex but can't seem to figure out how to show the 5 latest entries for a particular category.

    here is what i have so far;

    <?php get_posts('category=3&numberposts=5'); ?

  2. keesiemeijer
    moderator
    Posted 1 year ago #

    Use a regular loop and put this before it:
    <?php $my_query = new WP_Query('cat=3&posts_per_page=5'); ?>
    start the loop with this:
    <?php while ($my_query->have_posts()) : $my_query->the_post(); ?>

  3. batooo
    Member
    Posted 1 year ago #

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags

No tags yet.