PHP: Hide category post in WordPress

/* Note: Get the <CATEGORY NUMBER> from the URL (and don't forget to prepend with '-').*/

<?php
function exclude_category( $query ) {
if ( $query->is_home ) {
$query->set('cat', '-<CATEGORY NUMBER>');
}
return $query;
}
add_filter('pre_get_posts', 'exclude_category');

"This aggression will not stand, man."