Last active
February 26, 2016 03:03
-
-
Save QROkes/26e49b3f28da13e3a121 to your computer and use it in GitHub Desktop.
Add featured image in RSS feed (Wordpress)
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
//* Add featured image in RSS feed | |
add_filter('the_content_feed', 'qr_rss_featured'); | |
function qr_rss_featured($content) { | |
global $post; | |
if( has_post_thumbnail($post->ID) ) | |
$content = ' ' . get_the_post_thumbnail($post->ID, 'thumbnail') . ' ' . $content; | |
return $content; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment