---
title: Filtrar título de publicación en el mapa del sitio HTML
url: "https://www.seopress.org/es/soporte/hooks/filtrar-titulo-de-publicacion-en-el-mapa-del-sitio-html/"
lang: es
updated: 2023-11-08
hook_name: seopress_sitemaps_html_post_title
required_version: 7.2
---

# Filtrar título de publicación en el mapa del sitio HTML

- **Hook name:** `seopress_sitemaps_html_post_title`
- **Required version:** 7.2

```php
function sp_sitemaps_html_post_title($post_title) {
    //do your sutff
    return $post_title;
}
add_filter('seopress_sitemaps_html_post_title', 'sp_sitemaps_html_post_title');
```

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



