The world's most flexible WordPress theme
Subscribe via Email
Wildcard Usage:* matches any number of characters% matches exactly one character
Forum Flexibility 2 Theme Customization Show Posts From Only Certain Categories
Show Posts From Only Certain Categories
4:17 amOctober 9, 2009
bobbergie
posts 3
With Flex 2, is there an easy way to show posts from certain categories and not others on the Home page?
Thanks,
Bob
2:32 pmNovember 3, 2009
Ryan
posts 1547
Not an easy way, but a way. See this: http://codex.wordpress.org/The_Loop#Exclude_Posts_From_Some_Category
And in particular:
<?php if (in_category('3') && is_home() ) continue; ?>
You need to use conditional statements to indicate which categories to display and the is_home() part tells it to only filter the loop when you're on the home page, not the categories pages.