Skip to content

Instantly share code, notes, and snippets.

@bkno
Created December 2, 2020 19:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bkno/3d8c9bf9a2b71218c2f8c70085abbe26 to your computer and use it in GitHub Desktop.
Save bkno/3d8c9bf9a2b71218c2f8c70085abbe26 to your computer and use it in GitHub Desktop.
function exclude_category($query) {
if ( $query->is_feed ) {
$query->set('cat', '-999'); // replace 999 with your category ID
}
return $query;
}
add_filter('pre_get_posts', 'exclude_category');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment