I'm trying to exclude a category from displaying it's post on the pages of my blog... I can get it work but when I do you can't navagate to other older posts
Here is the code I'm taking from wordpress help...
Code:
<?php
if (is_home()) {
query_posts("cat=-3");
}
?>
And I'm adding it before the loop
Code:
<div id="content">
(INSERTING ABOVE CODE ON THIS LINE)
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
What am I doing wrong
Thanks in advance for the help
