Only posts from one Category
-
I’m still pretty new to WordPress and am trying to figure out how to show posts just from one category.
I did find some code snippets, but am not sure how to apply to my particular chunk of code.
Here is what I have right now…
<?php if (have_posts()) : ?> <?php wp_reset_query(); ?> <?php $paged = (get_query_var('paged')) ? get_query_var('paged') : 1; ?> <?php query_posts("paged=$paged"); ?>How would I modify this so only posts from category #21 would show up?
Thank you for your help 🙂
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
The topic ‘Only posts from one Category’ is closed to new replies.