---
title: Filtrer le Twitter Card creator
url: "https://www.seopress.org/fr/support/hooks/filtrer-le-twitter-card-creator/"
lang: fr-FR
updated: 2018-04-14
hook_name: seopress_social_twitter_card_creator
required_version: 2.7.2
---

# Filtrer le Twitter Card creator

- **Hook name:** `seopress_social_twitter_card_creator`
- **Required version:** 2.7.2

```php
function sp_social_twitter_card_creator($html) { 
	//you can add here all your conditions as if is_page(), is_category() etc.. 
	$html = '<meta name="twitter:creator" content="@wp_seopress" />'; 
	return $html;
}
add_filter('seopress_social_twitter_card_creator', 'sp_social_twitter_card_creator');
```

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



