Title: Feed Post Thumbnail
Author: required
Published: <strong>27 آوریل 2015</strong>
Last modified: 17 جولای 2026

---

جستجوی افزونه‌ها

![](https://ps.w.org/wp-feed-post-thumbnail/assets/banner-772x250.png?rev=1582767)

![](https://ps.w.org/wp-feed-post-thumbnail/assets/icon.svg?rev=2887120)

# Feed Post Thumbnail

 توسط [required](https://profiles.wordpress.org/wearerequired/)

[دانلود](https://downloads.wordpress.org/plugin/wp-feed-post-thumbnail.3.0.0.zip)

 * [جزئیات](https://fa.wordpress.org/plugins/wp-feed-post-thumbnail/#description)
 * [نقد و بررسی‌ها](https://fa.wordpress.org/plugins/wp-feed-post-thumbnail/#reviews)
 *  [نصب](https://fa.wordpress.org/plugins/wp-feed-post-thumbnail/#installation)
 * [توسعه](https://fa.wordpress.org/plugins/wp-feed-post-thumbnail/#developers)

 [پشتیبانی](https://wordpress.org/support/plugin/wp-feed-post-thumbnail/)

## توضیحات

With this plugin, an MRSS namespace is added to the site’s RSS feed to include each
post’s thumbnail.

WP Feed Post Thumbnail is very lightweight and only adds two small options under
Settings -> Reading.

### Contribute

If you would like to contribute to this plugin, report an issue or anything like
that, please note that we develop this plugin on [GitHub](https://github.com/wearerequired/required-wp-feed-post-thumbnail).

Developed by [required](https://required.com/)

## عکس‌های صفحه

[⌊Reading Settings⌉⌊Reading Settings⌉[

Reading Settings

## نصب

### Manual Installation

 1. Upload the entire `/wp-feed-post-thumbnail` directory to the `/wp-content/plugins/`
    directory.
 2. Activate WP Feed Post Thumbnail through the ‘Plugins’ menu in WordPress.
 3. Enjoy more awesome RSS feeds

## سوالات متداول

### Does the RSS feed still validate with this plugin enabled?

Yep, we add the proper XML namespaces for that. Everything just works as expected!

### Any way to force the plugin to always add a certain thumbnail size?

Yes, the plugin has two filters available for this:

    ```
    // Filters the size on media:content tag. Defaults to 'full'.
    add_filter( 'wp_feed_post_thumbnail_image_size_full', function( $size ) {
        return 'large'; // Return any registered image size.
    }, 10, 1 );

    // Filters the size on the media:thumbnail tag. Defaults to 'thumbnail'.
    add_filter( 'wp_feed_post_thumbnail_image_size_thumbnail', function( $size ) {
        return 'medium'; // Return any registered image size.
    }, 10, 1 );
    ```

### Can I change which images are shown?

Yes, the plugin has two filters available for this:

    ```
    // Filters the featured image attachment post object.
    add_filter( 'wp_feed_post_thumbnail_image', function( $thumbnail ) {
        return ''; // Return an empty string or another attachment post object.
    }, 10, 1 );

    // Filters the array of attachment post objects. Defaults to featured image post object if exists.
    add_filter( 'wp_feed_post_thumbnail_images', function( $images ) {
        $attachment_id = '123';
        $images[] =  get_post( $attachment_id ); // Additional attachment post object.
        return images;
    }, 10, 1 );
    ```

### Can I change the title, description or author shown with the image?

Yes, there is a filter for each of these things:

    ```
    // Filters the title on the media:title tag. Defaults to attachment title.
    add_filter( 'wp_feed_post_thumbnail_title', function( $title ) {
        return 'Override title'; // Return any plain text.
    }, 10, 1 );

    // Filters the text on the media:description tag. Defaults to attachment description.
    add_filter( 'wp_feed_post_thumbnail_description', function( $description ) {
        return 'Same description for all images'; // Return any plain string.
    }, 10, 1 );

    // Filters the name of the author on the media:copyright tag. Defaults to attachment author.
    add_filter( 'wp_feed_post_thumbnail_author', function( $author_name ) {
        return 'Matt'; // Return any plain string.
    }, 10, 1 );
    ```

## نقد و بررسی‌ها

![](https://secure.gravatar.com/avatar/da4dbd5fb92824aceaed1008170588282b36491ab2baae3375bd5de0e8cea7bf?
s=60&d=retro&r=g)

### 󠀁[Not adding anything…](https://wordpress.org/support/topic/not-adding-anything/)󠁿

 [Clicknathan](https://profiles.wordpress.org/clicknathan/) 27 اکتبر 2016 5 پاسخ

Tried refreshing permalinks, saving settings on the General settings page you’ve
added the two checkboxes to, nothing makes a difference. No post thumbnail in the
feeds… Update! And then it started working! I’m guessing this may have had something
to do with either my hosting’s caching or possibly even just my own browser cache.
Works like a dream, thank you!

 [ خواندن تمامی 1 نقد و بررسی‌ ](https://wordpress.org/support/plugin/wp-feed-post-thumbnail/reviews/)

## توسعه دهندگان و همکاران

“Feed Post Thumbnail” نرم افزار متن باز است. افراد زیر در این افزونه مشارکت کرده‌اند.

مشارکت کنندگان

 *   [ required ](https://profiles.wordpress.org/wearerequired/)
 *   [ Silvan Hagen ](https://profiles.wordpress.org/neverything/)
 *   [ Pascal Birchler ](https://profiles.wordpress.org/swissspidy/)
 *   [ Ulrich ](https://profiles.wordpress.org/grapplerulrich/)

“Feed Post Thumbnail” به 4 زبان ترجمه شده است. با تشکر از [مترجمین](https://translate.wordpress.org/projects/wp-plugins/wp-feed-post-thumbnail/contributors)
برای همکاری و کمک‌هایشان.

[ترجمه “Feed Post Thumbnail” به زبان شما.](https://translate.wordpress.org/projects/wp-plugins/wp-feed-post-thumbnail)

### علاقه‌ مند به توسعه هستید؟

[کد را مرور کنید](https://plugins.trac.wordpress.org/browser/wp-feed-post-thumbnail/)،
[مخزن SVN](https://plugins.svn.wordpress.org/wp-feed-post-thumbnail/) را بررسی کنید،
یا از طریق [RSS](https://plugins.trac.wordpress.org/log/wp-feed-post-thumbnail/?limit=100&mode=stop_on_copy&format=rss)
در [گزارش توسعه](https://plugins.trac.wordpress.org/log/wp-feed-post-thumbnail/)
مشترک شوید.

## گزارش تغییرات

### 3.0.0 -2023-03-27

 * Enhancement: Add setting to disable adding Media RSS namespace.
 * Fixed: Prevent errors when unchecking all settings.
 * Changed: Requires at least PHP 7.4 and WordPress 6.0.

### 2.1.2 – 2019-03-11

 * Enhancement: Minor code improvements.
 * Enhancement: New filter `wp_feed_post_thumbnail_images` to list multiple images
 * Changed: minimum PHP version 5.4 & minimum WP version 4.7

For previous updates see [Changelog.md](https://github.com/wearerequired/wp-feed-post-thumbnail/blob/master/CHANGELOG.md).

## اطلاعات

 *  نگارش **3.0.0**
 *  آخرین به‌روزرسانی **2 ماه پیش**
 *  نصب‌های فعال **2,000+**
 *  نگارش وردپرس ** 6.0 یا بالاتر **
 *  آزمایش‌شده تا **7.0.4**
 *  نگارش PHP ** 7.4 یا بالاتر **
 *  زبان‌ها
 * [Chinese (Taiwan)](https://tw.wordpress.org/plugins/wp-feed-post-thumbnail/)،
   [English (US)](https://wordpress.org/plugins/wp-feed-post-thumbnail/)، [German](https://de.wordpress.org/plugins/wp-feed-post-thumbnail/)،
   [German (Switzerland)](https://de-ch.wordpress.org/plugins/wp-feed-post-thumbnail/)،
   و [Japanese](https://ja.wordpress.org/plugins/wp-feed-post-thumbnail/).
 *  [به زبان خودتان ترجمه کنید](https://translate.wordpress.org/projects/wp-plugins/wp-feed-post-thumbnail)
 * برچسب
 * [featured image](https://fa.wordpress.org/plugins/tags/featured-image/)[feed](https://fa.wordpress.org/plugins/tags/feed/)
   [mrss](https://fa.wordpress.org/plugins/tags/mrss/)[rss feed](https://fa.wordpress.org/plugins/tags/rss-feed/)
   [thumbnail](https://fa.wordpress.org/plugins/tags/thumbnail/)
 *  [نمایش پیشرفته](https://fa.wordpress.org/plugins/wp-feed-post-thumbnail/advanced/)

## امتیازها

 5 از 5 ستاره.

 *  [  امتیاز 1 5-ستاره     ](https://wordpress.org/support/plugin/wp-feed-post-thumbnail/reviews/?filter=5)
 *  [  امتیاز 0 4-ستاره     ](https://wordpress.org/support/plugin/wp-feed-post-thumbnail/reviews/?filter=4)
 *  [  امتیاز 0 3-ستاره     ](https://wordpress.org/support/plugin/wp-feed-post-thumbnail/reviews/?filter=3)
 *  [  امتیاز 0 2-ستاره     ](https://wordpress.org/support/plugin/wp-feed-post-thumbnail/reviews/?filter=2)
 *  [  امتیاز 0 1-ستاره     ](https://wordpress.org/support/plugin/wp-feed-post-thumbnail/reviews/?filter=1)

[بررسی شما](https://wordpress.org/support/plugin/wp-feed-post-thumbnail/reviews/#new-post)

[مشاهدهٔ همهٔ بررسی‌ها](https://wordpress.org/support/plugin/wp-feed-post-thumbnail/reviews/)

## مشارکت کنندگان

 *   [ required ](https://profiles.wordpress.org/wearerequired/)
 *   [ Silvan Hagen ](https://profiles.wordpress.org/neverything/)
 *   [ Pascal Birchler ](https://profiles.wordpress.org/swissspidy/)
 *   [ Ulrich ](https://profiles.wordpress.org/grapplerulrich/)

## پشتیبانی

چیزی برای گفتن دارید؟ نیاز به کمک دارید؟

 [مشاهده انجمن پشتیبانی](https://wordpress.org/support/plugin/wp-feed-post-thumbnail/)