Dec 8, 2012

Exclude specific category from wordpress home page

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');

No comments:

Post a Comment