J'ai un blog wordpress http://cgvector.com et je veux Afficher les images vedettes dans le flux RSS . Comment puis-je faire cela ? L'adresse de mon flux est la suivante http://feeds.feedburner.com/cgvector
J'ai ajouté ce code mais il ne fonctionne pas.
function featuredtoRSS($content) {
global $post;
if ( has_post_thumbnail( $post->ID ) ){
$content = '' . get_the_post_thumbnail( $post->ID, 'thumbnail', array( 'style' => 'float:left; margin:0 15px 15px 0;' ) ) . '' . $content;
}
return $content;
}
add_filter('the_excerpt_rss', 'featuredtoRSS');
add_filter('the_content_feed', 'featuredtoRSS');