---
title: Filtrar %% _ ct_your_custom_taxonomy_slug %% variable dinámica
url: "https://www.seopress.org/es/soporte/hooks/filtrar-_-ct_your_custom_taxonomy_slug-variable-dinamica/"
lang: es
updated: 2021-09-29
hook_name: seopress_titles_custom_tax
required_version: 3.9
---

# Filtrar %% _ ct_your_custom_taxonomy_slug %% variable dinámica

- **Hook name:** `seopress_titles_custom_tax`
- **Required version:** 3.9

```php
add_filter('seopress_titles_custom_tax', 'sp_titles_custom_tax', 10, 2);
function sp_titles_custom_tax($terms, $tax) {
	global $post;
	
	//Get all associated post terms
	$terms = strip_tags(get_the_term_list( $post->ID, $tax, '', ', ', '' ));
	

	//Check for errors
	if (!is_wp_error($terms)) {
		return $terms;
	}
}
```

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



