I want to show all the post in my home page, but I want to exclude the posts from the "x" category.
What things I have to change to do that?
Thanks.
I want to show all the post in my home page, but I want to exclude the posts from the "x" category.
What things I have to change to do that?
Thanks.
To exclude category 95, using the WordPress Default theme for example, in the wp-content/themes/default/index.php file, just before the line:
<?php if (have_posts()) : ?>
put this:
<?php query_posts($query_string . '&cat=-95'); ?>
The query_posts() article explains the arguments in detail.
Related:
Stepping Into Template Tags
Stepping Into Templates
Template Hierarchy
This topic has been closed to new replies.