AI Verified

Name

Featured Image in RSS Feeds

About

Show Featured Image in RSS Feed

Language

PHP

Rating

Voted: 0 by 2 user(s)

Codevault

MyCloudWorld

Scroll down to see more snippets from this codevault.

Wordpress Compatability

The author has indicated that this snippet is compatable up to wordpress version: Not Specified

Our AI bot has checked this snippet is compatable up to wordpress version: 6.1

Code Snippet Plugin Sync

Free & Pro

Download this snippet by clicking the download button, then head over to the Code Snippet Plugin settings in your wordpress admin dashboard, select the import menu then upload this file to import into your wordpress site.

Pro Only (Coming Soon)

You will be able to click a button and sync this snippet to your wordpress site automatically and from your dashboard manage all code snippets across all your wordpress sites that have the Code Snippets Pro plugin installed.

Website/ Profile URL:

https://mycloudworld.com

History

Last modified:

14/11/2022

Important Note

This snippet has the following status:

AI Verified

This snippet has been tested by our AI bot, see any comments below.

AI Bot Comments:

Found 0 vulnerabilities

Featured Image in RSS Feeds

 
                    
1function mcw_featured_image_in_feeds($content) {
2 global $post;
3 if ( has_post_thumbnail( $post->ID ) ){
4 $content = '<div>' . get_the_post_thumbnail( $post->ID, 'medium', array( 'style' => 'margin-bottom: 15px;' ) ) . '</div>' . $content;
5 }
6 return $content;
7}
8 
9add_filter('the_excerpt_rss', 'mcw_featured_image_in_feeds');
10add_filter('the_content_feed', 'mcw_featured_image_in_feeds');

0

Related Snippets

Please see some snippets below related to this snippet..

General

Unverified

0

CSS FLEXBOX HTML - PHOTO GALLERY

Added: 5 months ago

Last Updated: 5 months ago

HTML CODE FLEXBOX PHOTO GALLERY

General

Unverified

0

Simple CSV Status Logger

Added: 8 months ago

Last Updated: 8 months ago

General

Unverified

0

databasemainActivity

Added: 5 months ago

Last Updated: 5 months ago

Other Snippets in this Codevault

These are some popular snippets from this users codevault..

General

AI Verified

6

Remove Google Fonts and Use System Fonts

Added: 2 years ago

Last Updated: 2 months ago

Use this hook to remove all Google Fonts from website and use system fonts for best CLS Score.

WooCommerce

AI Verified

4

WooCommerce Hide Coupon Form after apply

Added: 2 years ago

Last Updated: 1 year ago

WooCommerce hide coupon form after coupon is applied.

WordPress Admin

AI Verified

2

Image Size Upload Set To Full Default

Added: 2 years ago

Last Updated: 1 year ago

If you want to set the image size to full-width for use in the post editor permanently.