---
title: Filtrer la balise titre (meta title)
url: "https://www.seopress.org/fr/support/hooks/filtrer-la-balise-titre-meta-title/"
lang: fr-FR
updated: 2018-04-03
hook_name: seopress_titles_title
required_version: 2.7.1
---

# Filtrer la balise titre (meta title)

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

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

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



