I am using the following code in home.php, above the loop to exclude posts from the home loop if in a certain category
I have two problems :-
- when using this piece of code my pagnation no longer works. It changes the URL but seems to just start the loop again
- If a post is in two categories, and one is the excluded category, it wont show. Is there a way to say only exclude if it is only in the specified category.
<?php
if (is_home()) {
query_posts("cat=-176");
}
?>
Thanks in advance