Exclude Woocommerce Product Category From Sitemap
-
Am trying to exclude 2 specific product categories from default WordPress sitemap.
Any help? Am stack!
'wp_sitemaps_posts_query_args', function( $args, $post_type ) { if ( 'product_cat' !== $post_type ) { return $args; } $args['product_cat__not_in'] = isset( $args['product_cat__not_in'] ) ? $args['product_cat__not_in'] : array(); $args['product_cat__not_in'][] = 2053; $args['product_cat__not_in'][] = 924; return $args; }, 10, 2 );
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Exclude Woocommerce Product Category From Sitemap’ is closed to new replies.