Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rwdevpixelparlor/ae7bd97b0946d0196d4a4c76ee8ef2b5 to your computer and use it in GitHub Desktop.
Save rwdevpixelparlor/ae7bd97b0946d0196d4a4c76ee8ef2b5 to your computer and use it in GitHub Desktop.
<?php
function exclude_category($query) {
if ( $query->is_feed ) {
$query->set('cat', '-5, -2, -3');
}
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