---
title: Filtrar el nombre de Google News para el mapa del sitio de noticias XML
url: "https://www.seopress.org/es/soporte/hooks/filtrar-el-nombre-de-google-news-para-el-mapa-del-sitio-de-noticias-xml/"
lang: es
updated: 2024-09-02
hook_name: seopress_sitemaps_xml_news_name
required_version: 8.1
---

# Filtrar el nombre de Google News para el mapa del sitio de noticias XML

- **Hook name:** `seopress_sitemaps_xml_news_name`
- **Required version:** 8.1

```php
add_filter('seopress_sitemaps_xml_news_name', 'sp_sitemaps_xml_news_name');
function sp_sitemaps_xml_news_name($name) {
	$name = 'My Google News Name';

	return $name;
}
```

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



