---
title: Filtro de matriz de variables dinámicas
url: "https://www.seopress.org/es/soporte/hooks/filtro-de-matriz-de-variables-dinamicas/"
lang: es
updated: 2021-09-29
hook_name: seopress_titles_template_variables
required_version: 3.7.7
---

# Filtro de matriz de variables dinámicas

- **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)



