Hi, I’ve excluded a specific category from displaying on the Blog, but the titles of the posts are still showing down the right hand side in the ‘Archive Widget’ and I don’t know how to get rid of them! I found a previous post and used the code below but it didn’t work, I hope you can help!
add_filter( 'widget_categories_args', 'wpsites_exclude_widget_category', 99 );
add_filter( 'widget_categories_dropdown_args', 'wpsites_exclude_widget_category', 99 );
function wpsites_exclude_widget_category( $cat_args ) {
$cat_args['exclude'] = '5';
return $cat_args;
I’ll put the URL in a secure note as it’s on a temp link.
Thanks!