---
title: Filtrar una taxonomía única del mapa del sitio XML
url: "https://www.seopress.org/es/soporte/hooks/filtrar-una-taxonomia-unica-del-mapa-del-sitio-xml/"
lang: es
updated: 2021-09-30
hook_name: seopress_sitemaps_xml_single_term
required_version: 3.7.5
---

# Filtrar una taxonomía única del mapa del sitio XML

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

```php
add_filter('seopress_sitemaps_xml_single_term', 'sp_sitemaps_xml_single_term');
function sp_sitemaps_xml_single_term($xml) {
	//complete XML single taxonomy sitemap
	//do your stuff here
	return $xml;	
}
```

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


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