---
title: Filtrer la variable dynamique %%_ct_your_custom_taxonomy_slug%%
url: "https://www.seopress.org/fr/support/hooks/filtrer-la-variable-dynamique-_ct_your_custom_taxonomy_slug/"
lang: fr-FR
updated: 2021-09-29
hook_name: seopress_titles_custom_tax
required_version: 3.9
---

# Filtrer la variable dynamique %%_ct_your_custom_taxonomy_slug%%

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



