I created a new category with the ID of 57, how do I exclude this category from the homepage/blog and then list the posts from this category on its own page?
I created a new category with the ID of 57, how do I exclude this category from the homepage/blog and then list the posts from this category on its own page?
You can use the category__not_in attribute in your WP_Query. See http://codex.wordpress.org/Class_Reference/WP_Query#Category_Parameters
hmm.. after lokoing im still not sure how to do this..
so i would do:
$query = new WP_Query( array( 'category__not_in' => array( 57 ) ) );
?
You must log in to post.