---
title: Filter Twitter Card creator
url: "https://www.seopress.org/support/hooks/filter-twitter-card-creator/"
lang: en-US
updated: 2021-09-30
hook_name: seopress_social_twitter_card_creator
required_version: 2.7.2
---

# Filter 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)



