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

# Filtrar mapa del sitio de noticias XML

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

```php
add_filter('seopress_sitemaps_xml_news', 'sp_sitemaps_xml_news');
function sp_sitemaps_xml_news($xml) {
	//complete XML news sitemap
	//do your stuff here
	return $xml;	
}
```

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


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