Skip to content

Instantly share code, notes, and snippets.

@cre8tivediva
Created April 18, 2018 04:12
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 cre8tivediva/77c2a2ae015da070f4529a2a88ac49b4 to your computer and use it in GitHub Desktop.
Save cre8tivediva/77c2a2ae015da070f4529a2a88ac49b4 to your computer and use it in GitHub Desktop.
Exclude Category from Home Page
//Exclude Category from Home Page
function c8d_exclude_category_homepage( $query ) {
if ( $query->is_home) {
$query->set( 'cat', '-1' ); // Change this number to the category ID you wish to exclude
}
}
add_action( 'pre_get_posts', 'c8d_exclude_category_homepage' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment