---
title: Excluir productos WooCommerce agotados del mapa del sitio XML
url: "https://www.seopress.org/es/soporte/hooks/excluir-productos-woocommerce-agotados-del-mapa-del-sitio-xml/"
lang: es
updated: 2023-07-21
hook_name: seopress_sitemaps_single_query
required_version: 1.0
---

# Excluir productos WooCommerce agotados del mapa del sitio XML

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

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

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



