私は wordpress ブログhttp://cgvector.comを持っていて、RSS フィードに注目の画像を表示したいと考えています。これどうやってするの?私のフィード アドレス: http://feeds.feedburner.com/cgvector
このコードを追加しましたが、機能していません。
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');