Query Posts Exclude Entire Category
I recommend you use the pre_get_posts filter or ditch query_posts and use WP Query. That way you can easily use category__not_in (array) parameter and not mess any other loops up. function exclude_category($query) { // this requires term id instead of term name so change “20” to the “sport” id // this assumes “sports” is in … Read more