How to make the blog show posts from only one specific category
-
I have different sections of my site and I want posts from specific categories to show up in specific sections. All of the sections work properly except the main blog, which shows all the different categories.
I added the same query that I did to the templates for the other sections – so I can’t seem to figure out why this is happening.
Blog is here:
https://www.peainthepodcast.com/blogJournal Section:
https://www.peainthepodcast.com/pregnancy-journalsResource Section:
https://www.peainthepodcast.com/resourcesThis is the code I use:
<?php query_posts(‘cat=145’); if (have_posts()) : while (have_posts()) : the_post(); ?>
Please help
- The topic ‘How to make the blog show posts from only one specific category’ is closed to new replies.