Skip to content

Instantly share code, notes, and snippets.

@Pross
Created April 13, 2013 21:25
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 Pross/5380142 to your computer and use it in GitHub Desktop.
Save Pross/5380142 to your computer and use it in GitHub Desktop.
function my_exclude_category( $query ) {
if ( $query->is_home ) {
$query->set( 'cat', '-1,-3' );
}
}
add_action( 'pre_get_posts', 'my_exclude_category' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment