Exclude Category From Blog Page
-
Hi Everyone,
I am trying to exclude categories from a blog page, I have got a snippet for my functions filefunction exclude_category( $query ) { if ( $query->is_page( 6127 ) && $query->is_main_query() ) { $query->set( 'cat', '-16, -17, -18, -344, -19, -25, -209' ); } } add_action( 'pre_get_posts', 'exclude_category' );
It seems to return a blank white page ??
Thanks
Rockyuk
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Exclude Category From Blog Page’ is closed to new replies.