エラーは
Deprecated: Function create_function() is deprecated in /XXXXXXX/wp-content/plugins/biz-calendar/biz-calendar.php on line 73
早速/wp-content/plugins/biz-calendar/biz-calendar.php を編集する
add_action( ‘widgets_init’, create_function( ”, ‘register_widget( “bizcalendarwidget” );’ ) );
↓ 73行目
add_action( ‘widgets_init’, function(){register_widget( “bizcalendarwidget” );});
これでエラーは出ない