---
title: Filtrar mapa del sitio de índice XML
url: "https://www.seopress.org/es/soporte/hooks/filtrar-mapa-del-sitio-de-indice-xml/"
lang: es
updated: 2021-09-30
hook_name: seopress_sitemaps_xml_index
required_version: 3.7.5
---

# Filtrar mapa del sitio de índice XML

- **Hook name:** `seopress_sitemaps_xml_index`
- **Required version:** 3.7.5

```php
add_filter('seopress_sitemaps_xml_index', 'sp_sitemaps_xml_index');
function sp_sitemaps_xml_index($xml) {
	//complete XML index sitemap
	//do your stuff here
	return $xml;	
}
```

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


**Este fragmento debe agregarse a un [complemento imprescindible](https://wordpress.org/support/article/must-use-plugins/) para que funcione.**
