所以我在我的Feed中使用feedburner并使用该选项仅显示博客文章的摘录/摘要,唯一的问题是使用此选项而不是Feed中的完整帖子,它不会显示给我图像,该帖子的特色图像。
我有办法做到吗?
谢谢
答案 0 :(得分:0)
您可以使用functions.php中的以下示例代码在摘录Feed中显示精选图片
//Function to add featured image in RSS feeds
function featured_image_in_rss($content){
global $post;
if (has_post_thumbnail($post->ID)){
$content = '<div class="featured_image_post_rss">' . get_the_post_thumbnail($post->ID, 'medium', array('style' => 'margin:10px; text-align: center;')) . '</div>' . $content;
}
return $content;
}
//Add the filter for RSS feeds Excerpt
add_filter('the_excerpt_rss', 'featured_image_in_rss');
此外,如果您要将精选图片添加到内容Feed,只需添加以下过滤器以及上述代码。
//Add the filter for RSS feed content
add_filter('the_content_feed', 'featured_image_in_rss');