function add_featured_image_to_rss($content) { global $post; if (has_post_thumbnail($post->ID)) { $thumbnail_id = get_post_thumbnail_id($post->ID); $thumbnail = wp_get_attachment_image_src($thumbnail_id, 'full'); if ($thumbnail) { $content = '' . $content; } } return $content; } add_filter('the_excerpt_rss', 'add_featured_image_to_rss'); add_filter('the_content_feed', 'add_featured_image_to_rss'); Blog
Skip to content Skip to footer