• With PHP 7.2 and higher, this message is found in the error log:
    Got error ‘PHP message: PHP Deprecated: Function create_function() is deprecated in ../wp-content/themes/liveride/functions/fe/widget-posts-default.php on line 9

    That line looks like:
    add_action('widgets_init', create_function('', 'return register_widget("liveride_homepage_default");'));

    The fault can be corrected by replacing the line with:
    add_action('widgets_init', function() {return register_widget("liveride_homepage_default");});

  • The topic ‘Function create_function() is deprecated’ is closed to new replies.