Causing a category to not display on the blog/home page
-
I am using my front page as a static page and my blog is named blog. how can I run a conditional to check if the blog page is loaded so I can exclude one of the category’s from displaying in the blog page?
<?php
if ( is_home()) {
query_posts($query_string . ‘&cat=-17&posts_per_page=3’ );
}
?>the above code is in the codex but it does not work for me, it just performs the same query over and over and offers me older posts -> and newer posts -> links and the older post link leads to the 404, mabye the query_string var is not storing the prev query info?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Causing a category to not display on the blog/home page’ is closed to new replies.