Add Featured Images to WordPress Feeds
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function ww_rss_post_thumbnail($content) { | |
global $post; | |
if(has_post_thumbnail($post->ID)) { | |
$content = get_the_post_thumbnail($post->ID) . $content; | |
} | |
return $content; | |
} | |
add_filter('the_excerpt_rss', 'ww_rss_post_thumbnail'); | |
add_filter('the_content_feed', 'ww_rss_post_thumbnail'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment