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'); ?
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'); ?
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(); ?>
This topic has been closed to new replies.