Edit functions.php file and make changes as below. At the line number three add your category ID.
function NoCategory($query) {
if($query->is_home() && $query->is_main_query()) {
$query->set('cat', '-1'); //category ID
}
}
add_action('pre_get_posts', 'NoCategory');
function NoCategory($query) {
if($query->is_home() && $query->is_main_query()) {
$query->set('cat', '-1'); //category ID
}
}
add_action('pre_get_posts', 'NoCategory');
Comments
Post a Comment