Skip to content

Instantly share code, notes, and snippets.

@techmuzz
Created May 22, 2019 01:01
Show Gist options
  • Save techmuzz/eb97c7ed6bef252530088f8d9ae6a924 to your computer and use it in GitHub Desktop.
Save techmuzz/eb97c7ed6bef252530088f8d9ae6a924 to your computer and use it in GitHub Desktop.
How To Exclude a Category From Homepage - https://www.techmuzz.com/how-to/make-category-excluder-homepage/
function excludeCatTechMuzz($query){
if ( $query->is_home ) {
$query->set(‘cat’, ‘-1479’); //1479 is the category number
}
return $query;
}
add_filter(‘pre_get_posts’, ‘excludeCatTechMuzz’);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment