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

# Filtrar la consulta del mapa del sitio del autor XML

- **Hook name:** `seopress_sitemaps_author_query`
- **Required version:** 3.6.5

```php
add_filter('seopress_sitemaps_author_query', 'sp_sitemaps_author_query');
function sp_sitemaps_author_query($args) {
	//$args = array('fields' => 'ID', 'orderby' => 'nicename', 'order' => 'ASC', 'has_published_posts' => array('post'), 'blog_id' => absint(get_current_blog_id()), 'lang' => ''); 
	$args['exclude'] = 1; //exclude user ID "1"
	return $args;
}
```

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



