Exclude Sticky Posts and Categories from the Loop
-
Hey guys.
I’m trying to exclude sticky posts and a certain category from the loop in a blog I’m working on.
I have two snippets of code that work well individually, but I can’t figure out how to combine them. Any help is appreciated.
This excludes sticky posts from the loop…
<?php query_posts(array("post__not_in" =>get_option("sticky_posts"))); ?>
… and this excludes a specific category from the loop…
<?php query_posts($query_string . '&cat=-8'); ?>
How would I go about combining the two to exclude both sticky posts and category ID 8???
Thanks for taking the time to read this.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Exclude Sticky Posts and Categories from the Loop’ is closed to new replies.