---
title: Filtrar la miniatura de la publicación en Oembed
url: "https://www.seopress.org/es/soporte/hooks/filtrar-la-miniatura-de-la-publicacion-en-oembed/"
lang: es
updated: 2021-09-30
hook_name: seopress_oembed_thumbnail
required_version: 3.8.9
---

# Filtrar la miniatura de la publicación en 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)



