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

# Filtrar el CSS del XSL del mapa del sitio

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

```php
add_filter('seopress_sitemaps_xsl_css', 'sp_sitemaps_xsl_css');
function sp_sitemaps_xsl_css($css)
{
    //var_dump($css);
    //add your own CSS here
    return $css;
}
```

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



