Created
September 27, 2013 01:44
-
-
Save dionysia/6723118 to your computer and use it in GitHub Desktop.
Show Featured Image in Wordpress rss feed Source:
http://wp.smashingmagazine.com/2011/12/07/10-tips-optimize-wordpress-theme/
This file contains hidden or 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_filter('the_content_feed', 'rss_post_thumbnail'); | |
function rss_post_thumbnail($content) { | |
global $post; | |
if( has_post_thumbnail($post->ID) ) | |
$content = '<p>' . get_the_post_thumbnail($post->ID, 'thumbnail') . '</p>' . $content; | |
return $content; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment