• No funciono de ninguna manera finalmente lo desinstalé y use este código que encontré en un blog:

    function rss_post_thumbnail($content) {
    global $post;
    if(has_post_thumbnail($post->ID)) {
    $content = ‘<p>’ . get_the_post_thumbnail($post->ID) .
    ‘</p>’ . get_the_excerpt();
    }
    return $content;
    }
    add_filter(‘the_excerpt_rss’, ‘rss_post_thumbnail’);
    add_filter(‘the_content_feed’, ‘rss_post_thumbnail’);

    http://wordpress.org/extend/plugins/wprichfeeds/

  • The topic ‘[Plugin: wpRichFeeds] Resuelto con unas pocas lineas en functions.php’ is closed to new replies.