2014-02-17 11 views
0

피드에 피드 버너를 사용하고 있으며 해당 옵션을 사용하여 블로그 게시물의 발췌/요약 만 표시하는 경우 유일한 문제는 피드에 전체 게시물이 아니라 이미지, 해당 게시물의 추천 이미지를 표시하지 않습니다.발췌 한 게시물의 thumnail 그림/특집 그림 표시 방법

내가 할 수있는 방법이 있습니까?

, 당신은

답변

0

당신은 발췌 피드는 콘텐츠 피드 기능을 갖춘 이미지를 추가 할 경우에도

//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'); 

에 기능을 갖춘 이미지를 보여주기 위해 functions.php에서 다음 예제 코드를 사용할 수 있습니다 감사 위의 코드와 함께 다음 필터를 추가하기 만하면됩니다.

//Add the filter for RSS feed content 
add_filter('the_content_feed', 'featured_image_in_rss'); 
+0

답장을 보내 주셔서 감사합니다.하지만 피드 버너의 피드에 푸시됩니까? 볼 수 있듯이 이미 내 피드에 http://bucatepealese.ro/feed를 사용하는 테마의 그림이 있지만 발췌 옵션과 함께 feedburner를 사용하면 그림이 표시되지 않습니다. – user3190197

+0

예 Feedburner의 피드에도 표시됩니다. – Akhilesh