---
title: Filtrar meta descripción
url: "https://www.seopress.org/es/soporte/hooks/filtrar-meta-descripcion/"
lang: es
updated: 2021-09-29
hook_name: seopress_titles_desc
required_version: 2.7.1
---

# Filtrar meta descripción

- **Hook name:** `seopress_titles_desc`
- **Required version:** 2.7.1

```php
function sp_titles_desc($html) {
	//you can add here all your conditions as if is_page(), is_category() etc.. 
	$html = 'my meta description'; 
	return $html;
}
add_filter('seopress_titles_desc', 'sp_titles_desc');
```

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



