You must be logged in to post
Search Forums:


 






Wildcard Usage:
*    matches any number of characters
%    matches exactly one character

Show Posts From Only Certain Categories

UserPost

4:17 am
October 9, 2009


bobbergie

Member

posts 3

1

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 pm
November 3, 2009


Ryan

Admin

posts 1547

2

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.