web-dev-qa-db-ja.com

注目の画像をRSSフィードに表示する

やあ、誰かがRSSフィード内で注目の画像のURLを表示する方法を知っていますか?

2
dotty
function add_featured_image_url($output) {
    global $post;
    if ( has_post_thumbnail( $post->ID ) ){
        $output = wp_get_attachment_url( get_post_thumbnail_id( $post->ID ) ) . ' ' . $output;
    }
    return $output;
}

add_filter('the_excerpt_rss', 'add_featured_image_url');
add_filter('the_content_feed', 'add_featured_image_url');
4
sorich87