Home › Forums › Support › How Can I Exclude Category From Showing Up on Homepage? This topic has 1 reply, 2 voices, and was last updated 4 years, 7 months ago by Leo. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts August 13, 2021 at 10:40 am #1894892 Daniel 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' ); August 13, 2021 at 10:45 am #1894898 LeoStaff Customer Support 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. Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In