Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #26331

    Is it possible to add the featured image to the RSS feed?

    #130042

    Sure – add following code to the bottom of functions.php

    function avia_add_images_to_rss_feed($content)
    {
    global $post;
    if ( has_post_thumbnail( $post->ID ) )
    {
    $content = get_the_post_thumbnail( $post->ID, 'full', array( 'style' => 'display: block;' ) ) . '<br/>' . $content;
    }
    return $content;
    }

    add_filter('the_excerpt_rss', 'avia_add_images_to_rss_feed');
    add_filter('the_content_feed', 'avia_add_images_to_rss_feed');

Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘Adding featured image to RSS feed’ is closed to new replies.