Recent Posts from Category
-
On my main page: https://azfans.com/recent-posts/
I display the first story at the top “Top Story” followed by the other most recent posts. I would like to also display the 10 latest posts from specific categories, just like my “Recent Blog Posts.” below.
How would I grab the latest 10 posts from a category to put on this page?
Currently, to have the most recent 6 posts from ALL categories, I have:
<?php $my_query = new WP_Query('showposts=6'); if ($my_query->have_posts()) : while ($my_query->have_posts()) : $my_query->the_post(); if( $post->ID == $do_not_duplicate ) continue; update_post_caches($posts); ?> <li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a><span class="smdate"><?php the_time('j M') ?></span></li> <?php endwhile; endif; ?>
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Recent Posts from Category’ is closed to new replies.