Deprecated function notice
-
Message I get on all the pages on the dev and stage servers:
Deprecated: Function create_function() is deprecated in /var/www/htdocs/wp-content/plugins/healcode-mindbody-widget/widget.php on line 88
Code on :88 of named file:
// add_action(‘widgets_init’, create_function(”, ‘return register_widget(“Hc_Insert_Html_Widget”);’)); // <– this is less than perfect// js style anon function call. This is awesome:
add_action(‘widgets_init’, function() {
return register_widget(“Hc_Insert_Html_Widget”);
});create_function was supplanted w/ native anon function as of php 5.3.0, in 2008. Hey @mbo — you might consider … you know. ??
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Deprecated function notice’ is closed to new replies.