---
title: Filter post thumbnail in Oembed
url: "https://www.seopress.org/support/hooks/filter-post-thumbnail-in-oembed/"
lang: en-US
updated: 2021-09-30
hook_name: seopress_oembed_thumbnail
required_version: 3.8.9
---

# Filter post thumbnail in 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)



