/* The Number 611 is my category ID number. Please replace this with your own! Add this snippet to your functions.php file. */ function exclude_cat($query) { if ( $query->is_home) { $query-> set('cat','-611'); } return $query; } add_filter('pre_get_posts','exclude_cat');