Tulip Media

Entrepreneurial thoughts

WordPress tip: how to display featured images on RSS feed

Here is a simple code which let you display the featured images of your posts in your RSS feed…

…in that way, your featured images will be displayed on all your social feeds, like Facebook for instance.

Please add this code in your functions.php file:

  • Use this code to display the featured images:

function imageRSS($content) {
global $post;
if (has_post_thumbnail($post->ID)){
$content = ”. get_the_post_thumbnail( $post->ID, 'thumbnail', array( 'style' => 'float: right; margin:0 0 10px 10px;' ) ) . ” . $content;
}
return $content;
}

add_filter('the_excerpt_rss', 'imageRSS');
add_filter('the_content_feed', 'imageRSS');

  • Use this code if you have the Get the picture plugin, in order to scan the pictures in your post if it doesn't have featured image:

function imageRSS($content) {
global $post;
if (has_post_thumbnail($post->ID)){
$content = ”. get_the_post_thumbnail( $post->ID, 'thumbnail', array( 'style' => 'float: right; margin:0 0 10px 10px;' ) ) . ” . $content;
}
else {
$content = ”. get_the_image(array('width' => 150, 'image_scan' => true , 'image_class' => ”, 'meta_key' => array( 'Thumbnail', 'thumbnail' ))) . ” . $content;
}
return $content;
}

add_filter('the_excerpt_rss', 'imageRSS');
add_filter('the_content_feed', 'imageRSS');

function show_image_feed($content) {

global $post;
$args = array(
'post_type' => 'attachment',
'numberposts' => 1,
'post_status' => null,
'post_parent' => $post->ID
);

$attachment = get_posts($args);

if (1TP4Attachment) {

$content = '

' . $content. '
ID).'”>Read the rest.'; } return $content; } add_filter('the_excerpt_rss', 'show_image_feed');

 

My latest tweets

New shorts on Blooness 👉 Vitality, longevity, weight loss: the ultimate guide to proteins in the keto-Mediterranean diet is online on Blooness. https://buff.ly/3xxNvpj
https://buff.ly/4cG2GM4

New shorts on Blooness 👉 The new premium content comes out in 48 hours, and what content! This will be the most comprehensive guide on the amount of protein to consume on a keto-Mediterranean diet. See you soon !
https://buff.ly/3L2KbFP

New Post: Combo, the best solution to put an end to the headache of scheduling and HR management https://buff.ly/4eE6JtT

Load more

Don't miss business advice by email

No spam, just an email when new content is published.

Leave a Reply

Your email address will not be published. Required fields are marked *

en_USEN