0
因此,我正在使用feedburner作爲我的提要,並使用該選項僅顯示摘要/摘要的博客文章,唯一的問題是,使用此選項和而不是完整的帖子,它不會顯示圖片,該帖子的精選圖片。如何在摘錄Feed中顯示thumnail圖片/文章的精選圖片
有沒有一種方法可以做到這一點?
謝謝
因此,我正在使用feedburner作爲我的提要,並使用該選項僅顯示摘要/摘要的博客文章,唯一的問題是,使用此選項和而不是完整的帖子,它不會顯示圖片,該帖子的精選圖片。如何在摘錄Feed中顯示thumnail圖片/文章的精選圖片
有沒有一種方法可以做到這一點?
謝謝
您可以使用下面的示例代碼中的functions.php中摘錄飼料
//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');
此外,如果你想特色圖片添加到內容飼料,以顯示特色圖片,除了上面的代碼外,還要添加下面的過濾器。
//Add the filter for RSS feed content
add_filter('the_content_feed', 'featured_image_in_rss');
謝謝你的回答,但是這會得到從feedburner推進飼料?正如你所看到的,我已經在我使用http://bucatepealese.ro/feed這個主題的feed中提供了圖片,但是如果我使用feedburner和excerpt選項,它不會顯示任何圖片。 – user3190197
是的,它也會顯示在Feedburner的Feed中 – Akhilesh