---
title: Inclure les produits cachés WooCommerce dans le plan de site XML
url: "https://www.seopress.org/fr/support/hooks/inclure-les-produits-caches-woocommerce-dans-le-plan-de-site-xml/"
lang: fr-FR
updated: 2021-11-06
hook_name: seopress_sitemaps_single_query
required_version: 2.4
---

# Inclure les produits cachés WooCommerce dans le plan de site XML

- **Hook name:** `seopress_sitemaps_single_query`
- **Required version:** 2.4

```php
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);
```

Source: [https://gist.github.com/wp-seopress/c592a1951240b0f7d673668aba0b1be8](https://gist.github.com/wp-seopress/c592a1951240b0f7d673668aba0b1be8)



