---
title: Filtra el tamaño de las imágenes al frente de las publicaciones en el feed RSS
url: "https://www.seopress.org/es/soporte/hooks/filtra-el-tamano-de-las-imagenes-al-frente-de-las-publicaciones-en-el-feed-rss/"
lang: es
updated: 2023-07-06
hook_name: seopress_rss_post_thumb_size
required_version: 6.7
---

# Filtra el tamaño de las imágenes al frente de las publicaciones en el feed RSS

- **Hook name:** `seopress_rss_post_thumb_size`
- **Required version:** 6.7

```php
add_filter('seopress_rss_post_thumb_size', 'sp_rss_post_thumb_size');
function sp_rss_post_thumb_size($size) {
    //Will be used with wp_get_attachment_image_src() https://developer.wordpress.org/reference/functions/wp_get_attachment_image_src/
    
    $size = 'thumbnail'; //Accepts any registered image size name (thumbnail, medium, large, full or custom size name), or an array of width and height values in pixels (in that order).
    return $size;
}
```

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



