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

# Filtrar mapa del sitio de video XML

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

```php
add_filter('seopress_sitemaps_xml_video', 'sp_sitemaps_xml_video');
function sp_sitemaps_xml_video($xml) {
	//complete XML video sitemap
	//do your stuff here
	return $xml;	
}
```

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


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