Adding an featured image to RSS(Feed)

Posted in: Newspaper
Post count: 68

How do I add featured images to feed?

http://www.mecburlar.com

http://feeds.feedburner.com/Mecburlar

  • This topic was modified 10 years by Mecburlar.
Post count: 68

Theme Function.php

add this code

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');

Teşekkür ederim.

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.