// Home Feed Exclude Cat ID
function exclude_category($query) {
	if ( $query->is_feed || $query->is_home ) {
		$query->set('cat', '-8');
	}
return $query;
}
add_filter('pre_get_posts', 'exclude_category');
Benim kullandığım kodlar. Hem beslemelerden (feed) hem de anasayfadan gizliyor. Functions.php dosyasına. <?php Eğer dosyanız bomboşsa yukarıdaki kodlar bu kodların arasında olacak ?> Umarım yardımcı olur.