Deprecated with Php 7.2
-
1/ Function create_function() is deprecated in …\wp-content\plugins\quick-event-manager\quick-event-manager.php on line 64
add_action(“widgets_init”, create_function(”, ‘return register_widget(“qem_widget”);’) );
—— replaced by:
function add_qem_widget() {
return register_widget(“qem_widget”);
}
add_action(“widgets_init”, ‘add_qem_widget’ );2/ Function create_function() is deprecated in …\wp-content\plugins\quick-event-manager\quick-event-manager.php on line 65
add_action(“widgets_init”, create_function(”, ‘return register_widget(“qem_calendar_widget”);’) );
—— replaced by
function add_qem_calendar_widget() {
return register_widget(“qem_calendar_widget”);
}
add_action(“widgets_init”, ‘add_qem_calendar_widget’ );
- The topic ‘Deprecated with Php 7.2’ is closed to new replies.