Display Posts from a category after a certain number
-
Ok, I know how to pull selective categories and display it…
?php $my_query = new WP_Query(‘category_name=featured&showposts=3’); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>[html customization]
<?php endwhile; ?>
However I am doing something where I want it to show from the second post and onwards…so how do I exclude the first post from the query?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Display Posts from a category after a certain number’ is closed to new replies.