Skip to content

Instantly share code, notes, and snippets.

@Pross
Created April 13, 2013 21:25
Show Gist options
  • Select an option

  • Save Pross/5380142 to your computer and use it in GitHub Desktop.

Select an option

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