Deprecated: Function create_function() is deprecated in /DATA/html/wpmore.cn/wp-content/plugins/simple-tags/simple-tags.php on line 80
这是 Simple Tags 的debug,PHP 7.2会报错。
将第80行
add_action( 'widgets_init', function(){ '', 'return register_widget("SimpleTags_Widget");' ) );
改为
add_action( 'widgets_init', function(){ register_widget("SimpleTags_Widget"); } );