0

そのため、フィードにフィードバーナーを使用しており、そのオプションを使用してブログ投稿の抜粋/要約のみを表示しています。唯一の問題は、このオプションを使用すると、フィードへの完全な投稿ではなく、画像が表示されないことです。その投稿の注目の画像。

それを行う方法はありますか?

ありがとうございました

4

1 に答える 1

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');
于 2014-02-17T22:07:49.957 に答える