Include hidden WooCommerce products to the XML sitemaps in SEOPress

Include hidden WooCommerce products to the XML sitemaps in SEOPress on child sites.

Snippet Type

Execute on Child Sites

Snippet

function sp_sitemaps_single_query($args, $cpt_key) { 
	if ( $cpt_key == 'product' ) {
		//default
		// $args['tax_query'][] = [
		// 	'taxonomy' => 'product_visibility',
		// 	'field'    => 'slug',
		// 	'terms'    => ['exclude-from-catalog'],
		// 	'operator' => 'NOT IN',
		// ];
		unset($args['tax_query']);
	}
	return $args;
}
add_filter('seopress_sitemaps_single_query', 'sp_sitemaps_single_query', 10, 2);

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.