Tulipe Media

Réflexions entrepreneuriales

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 image 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 ($attachment) {

$content = ‘

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

 

Mes derniers tweets

Nouveau short sur Blooness 👉 La formation dédiée aux meilleures graines oléagineuses pour la santé est enfin disponible au format audio https://buff.ly/3xo9fTS
https://buff.ly/43DkrYR

Nouveau short sur Blooness 👉 S’il n’y avait qu’un supplément à prendre, ce serait le magnésium (avec la vitamine D). Le guide complet des meilleurs multivitamines du marché toujours dispo ici en accès libre https://buff.ly/49bHqvp
https://buff.ly/49c3rKK

Nouveau short sur Blooness 👉 La dernière formation Blooness sur les #protéines est disponible au format audio https://buff.ly/4aijbMW
https://buff.ly/3TP67cB

Charger plus

Ne manquez pas les conseils business par mail

Pas de spam, juste un mail lorsqu'un nouveau contenu est publié.

Laisser un commentaire

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *

fr_FRFR