Comments 2transparenceco started the conversationSeptember 17, 2020 at 2:40pmI want my blog page to show all post categories except the careers category which will have its own page.What is the cleanest way to do this in your theme?Thanks 2transparenceco repliedSeptember 17, 2020 at 2:55pmNever mind I added the following function and got what I wanted, thanks! function exclude_category_home( $query ) {if ( $query->is_home ) {$query->set( 'cat', '-5' );}return $query;} add_filter( 'pre_get_posts', 'exclude_category_home' );[deleted] repliedSeptember 18, 2020 at 7:12amI'm happy to hear thatHave a great day! Sign in to reply ...
I want my blog page to show all post categories except the careers category which will have its own page.
What is the cleanest way to do this in your theme?
Thanks
Never mind I added the following function and got what I wanted, thanks!
I'm happy to hear that
Have a great day!