Archived topic
How Can I Exclude Category From Showing Up on Homepage?
1 reply · Started by Daniel on August 13, 2021
Viewing posts 1–2 of 2
Hello
I'm trying to exclude one category & sub-categories from the homepage, I have found a code online to do it but where do I have to paste the code to?
Here is the code:
function exclude_category_home( $query ) {
if ( $query->is_home ) {
$query->set( 'cat', '-5' );
}
return $query;
}
add_filter( 'pre_get_posts', 'exclude_category_home' );
Hi there,
Try one of these methods here:
Adding PHP: https://docs.generatepress.com/article/adding-php/
Code Snippets is the easiest if you aren't using a child theme already.
This archived topic is closed to new replies.