---
title: Filtrer la miniature du post dans Oembed
url: "https://www.seopress.org/fr/support/hooks/filtrer-la-miniature-du-post-dans-oembed/"
lang: fr-FR
updated: 2020-07-14
hook_name: seopress_oembed_thumbnail
required_version: 3.8.9
---

# Filtrer la miniature du post dans Oembed

- **Hook name:** `seopress_oembed_thumbnail`
- **Required version:** 3.8.9

```php
add_filter('seopress_oembed_thumbnail','sp_oembed_thumbnail');
function sp_oembed_thumbnail($thumbnail) {
	$thumbnail = ['url' => 'https://example.com/my-post-thumbnail-url', 'width' => '1920', 'height' => '1080'];
	return $thumbnail;
}
```

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



