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

# Filtrar mapa del sitio del autor XML

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

```php
add_filter('seopress_sitemaps_xml_author', 'sp_sitemaps_xml_author');
function sp_sitemaps_xml_author($xml) {
	//complete XML author sitemap
	//do your stuff here
	return $xml;	
}
```

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


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