[ad_1]
To remove multiple platforms ( custom taxonomies) I tried this
add_filter( 'slim_seo_sitemap_post_type_query_args', function( $query_args ) { $query_args['category__not_in'] = [228,257,287,297,449,450,451,452,453,439,447,448,287,271,251,228,257,446,215,455,302,303,446];
return $query_args;
} );
and this –
add_filter( 'slim_seo_taxonomy_query_args', function( $query_args ) { $query_args['exclude'] = '228,257,287,297,449,450,451,452,453,439,447,448,287,271,251,228,257,446,215,455,302,303,446'; } );But none of the above worked. Here, 228,257,287,297,449 etc. are the ID of custom taxonomies. Please help
