---
title: Filtrer la miniature Twitter Card
url: "https://www.seopress.org/fr/support/hooks/filtrer-la-miniature-twitter-card/"
lang: fr-FR
updated: 2018-04-13
hook_name: seopress_social_twitter_card_thumb
required_version: 2.7.2
---

# Filtrer la miniature Twitter Card

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

```php
function sp_social_twitter_card_thumb($html) { 
	//you can add here all your conditions as if is_page(), is_category() etc.. 
	$html = '<meta name="twitter:image:src" content="https://www.seopress.org/wp-content/uploads/2016/12/cropped-ico-logo-seopress-256x256.png" />'; 
	return $html;
}
add_filter('seopress_social_twitter_card_thumb', 'sp_social_twitter_card_thumb');
```

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



