Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save braddalton/5197576 to your computer and use it in GitHub Desktop.
Save braddalton/5197576 to your computer and use it in GitHub Desktop.
function wpsites_exclude_category_posts($query) {
if ($query->is_cat) {
$query->set('cat','-007');
}
return $query;
}
add_filter('pre_get_posts','wpsites_exclude_category_posts');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment