我有一个 wordpress 博客http://cgvector.com,我想在 RSS Feed 中显示特色图片。我怎样才能做到这一点?我的提要地址是: 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');