Skip to content

Instantly share code, notes, and snippets.

@leanda
Created December 9, 2015 12:18
Show Gist options
  • Save leanda/d182c36f44fc65e9cb24 to your computer and use it in GitHub Desktop.
Save leanda/d182c36f44fc65e9cb24 to your computer and use it in GitHub Desktop.
Excludes chosen category from home (functions.php)
/**
* Excludes chosen project category from home
*/
function excludeCat($query) {
if ( $query->is_home ) {
$query->set('cat', '-198');
}
return $query;
}
add_filter('pre_get_posts', 'excludeCat');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment