03 Oct How to exclude a category from your WordPress homepage
To exclude a category simple include this code snippet in your Wordpress theme's functions.php file. It is best practice to add this to your child theme as the change will be lost when you update your theme. function exclude_category_home( $query ) { if ( $query->is_home ) { $query->set(...