Excluding Specific Categories from blog page
Description
This function is to go into the functions.php file and will exclude any post from a specific category from appearing on blog page. Change the category number to the category that you would like to hide. It is good to create a category called hidden and assign all hidden post to that category
This function is to go into the functions.php file and will exclude any post from a specific category from appearing on blog page. Change the category number to the category that you would like to hide. It is good to create a category called hidden and assign all hidden post to that category
PHP Source Code
<?php
function exclude_category($query) {
if ( $query->is_home() ) {
$query->set('cat', '-2,-97,-98,-92,-6,-96,-105,-1');
}
return $query;
}
add_filter('pre_get_posts', 'exclude_category');
?>