2014-02-17 72 views

回答

0

您可以使用下面的示例代碼中的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'); 
+0

謝謝你的回答,但是這會得到從feedburner推進飼料?正如你所看到的,我已經在我使用http://bucatepealese.ro/feed這個主題的feed中提供了圖片,但是如果我使用feedburner和excerpt選項,它不會顯示任何圖片。 – user3190197

+0

是的,它也會顯示在Feedburner的Feed中 – Akhilesh

相關問題