Exclude category from certain page
-
Hi,
I want to exclude the category “News” from the “Projects” page of my website, which is not the homepage. All I found in my research was this code – but it does only exclude a category from the homepage. Can anyone help me how to change this to ANOTHER page which is not the homepage?function exclude_category( $query ) { if ( $query->is_home() && $query->is_main_query() ) { $query->set( 'cat', '-6' ); } } add_action( 'pre_get_posts', 'exclude_category' );The page I need help with: [log in to see the link]
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
The topic ‘Exclude category from certain page’ is closed to new replies.