Deprecated: Function create_function() is deprecated

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");
	}
);

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注