---
title: Filtrer le tableau des variables dynamiques
url: "https://www.seopress.org/fr/support/hooks/filtrer-le-tableau-des-variables-dynamiques/"
lang: fr-FR
updated: 2019-11-22
hook_name: seopress_titles_template_variables
required_version: 3.7.7
---

# Filtrer le tableau des variables dynamiques

- **Hook name:** `seopress_titles_template_variables`
- **Required version:** 3.7.7

```php
function sp_titles_template_variables($variables) {
	//do a print_r($variables) to see the full array
	return $variables;
}
add_filter('seopress_titles_template_variables','sp_titles_template_variables');
```

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



