---
title: Filtrar la consulta de categoría de producto de mapa del sitio HTML para productos
url: "https://www.seopress.org/es/soporte/hooks/filtrar-la-consulta-de-categoria-de-producto-de-mapa-del-sitio-html-para-productos/"
lang: es
updated: 2021-09-29
hook_name: seopress_sitemaps_html_product_cat_query
required_version: 5.0
---

# Filtrar la consulta de categoría de producto de mapa del sitio HTML para productos

- **Hook name:** `seopress_sitemaps_html_product_cat_query`
- **Required version:** 5.0

```php

function sp_sitemaps_html_product_cat_query($args_product_cat_query) { 
	//default 
	//$args_product_cat_query = array('orderby'=>'name','order'=>'ASC','meta_query' => array( array( 'key' => '_seopress_robots_index', 'value' => 'yes', 'compare' => 'NOT EXISTS' ) ),'exclude'=>$seopress_xml_sitemap_html_exclude_option,'suppress_filters'=>false); 
	$args_product_cat_query['exclude'] = '10,12,20'; //my ids 
	return $args_product_cat_query;
}
add_filter( 'seopress_sitemaps_html_product_cat_query', 'sp_sitemaps_html_product_cat_query' );
```

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



