Tienes razón, me comí parte del código que puse. Este es el bueno:
Código PHP:
Ver originalfunction featuredtoRSS($content) {
global $post;
if ( has_post_thumbnail( $post->ID ) ){
$content = '' . get_the_post_thumbnail
( $post->ID, 'full', array( 'style' => 'float:left; margin:0px 15px 15px 0px;' ) ) . '' . $content; }
return $content;
}
add_filter('the_excerpt_rss', 'featuredtoRSS');
add_filter('the_content_feed', 'featuredtoRSS');
Voy a probar tu código y te digo algo.