Greetings,
I don't want my event posts to display on the home page. I found an earlier post that said to include this code in the index file's loop to exclude any Events category posts:
<?php
if (is_home()) {
query_posts("cat=-3");
}
?>
When I do this, the only one post that I do have on the home page gets repeated indefinitely. This is supposed to just be a static page displaying the one post that I used for the page's only intended content.
Any help is greatly appreciated.