• PHP Fatal error:
    Call to undefined method WP_Error::error()
    in [my-plugin-dir]/wp-rss-multi-importer/inc/custom_posts.php on line 620,

    I think

    if ( ! $feed->error() ) {
    should be

    if ( !is_wp_error($feed)) {

    that solved my issue.

The topic ‘Fatal error’ is closed to new replies.