Created
April 15, 2015 19:06
-
-
Save bhubbard/fa16d2152b84febfaa2d to your computer and use it in GitHub Desktop.
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
<?php | |
################################################################################ | |
// Featured Image for RSS FEEDS | |
################################################################################ | |
function clientname_post_thumbnail_rss($content) { | |
global $post; | |
if ( has_post_thumbnail( $post->ID ) ){ | |
$content = '' . get_the_post_thumbnail( $post->ID, 'rss-image', array( 'style' => 'float:left; margin-right:10px; height: 150px; width: 300px; border: 2px solid #e5e5e5' ) ) . '' . $content; | |
} | |
return $content; | |
} | |
/** | |
* @author Brad Dalton | |
* @example http://wpsites.net/web-design/add-featured-image-thumbnail-from-post-to-rss-feed/ | |
*/ | |
add_filter('the_content_feed', 'clientname_post_thumbnail_rss'); | |
add_filter('the_excerpt_rss', 'clientname_post_thumbnail_rss'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment