---
title: Filtrar mapa del sitio XSL
url: "https://www.seopress.org/es/soporte/hooks/filtrar-mapa-del-sitio-xsl/"
lang: es
updated: 2021-12-15
hook_name: seopress_sitemaps_xsl
required_version: 5.3
---

# Filtrar mapa del sitio XSL

- **Hook name:** `seopress_sitemaps_xsl`
- **Required version:** 5.3

```php
add_filter('seopress_sitemaps_xsl', 'sp_sitemaps_xsl');
function sp_sitemaps_xsl($xsl)
{
    //var_dump($xsl);
    //do your stuff
    return $xsl;
}
```

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



