Troubleshooting fetch_feed and SimplePie

add this to your feed

    $rss = fetch_feed( $url );
    if ( is_wp_error( $rss ) ) {
       echo $rss->get_error_message();  <---this
    } else {
   // do your stuff here
}

I would also suggest installing the debug toolbar extensions, like “debug-bar-extender”.

Leave a Comment