I have three categories on my WordPress that I want to show the first five posts for separately. How would I list the latest five posts from category?
I have three categories on my WordPress that I want to show the first five posts for separately. How would I list the latest five posts from category?
look at using
<?php query_posts(); while(have_posts()) : the_post(); ?>
and read up here
This topic has been closed to new replies.