---
title: Filtrar consultas de tipo de publicación jerárquica en el mapa del sitio HTML
url: "https://www.seopress.org/es/soporte/hooks/filtrar-consultas-de-tipo-de-publicacion-jerarquica-en-el-mapa-del-sitio-html/"
lang: es
updated: 2021-09-29
hook_name: seopress_sitemaps_html_pages_query
required_version: 3.3.7
---

# Filtrar consultas de tipo de publicación jerárquica en el mapa del sitio HTML

- **Hook name:** `seopress_sitemaps_html_pages_query`
- **Required version:** 3.3.7

```php
function sp_sitemaps_html_pages_query($args2, $cpt_key) {
	//default: 
    	//$args2 = array('post_type' => $cpt_key, 'include'=>$postslist, 'sort_order' => $seopress_xml_sitemap_html_order_option, 'sort_column' => $seopress_xml_sitemap_html_orderby_option);
	$args2['exclude'] = 10; 
	//exclude post with ID 10 
	return $args2;
}
add_filter( 'seopress_sitemaps_html_pages_query', 'sp_sitemaps_html_pages_query', 10, 2 );
```

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



