WordPress在PHP7.2出现create_function函数报错解决方法
PHP7.2 已经不推荐使用create_function函数
WordPress主题系统更新后,在测试PHP7.2兼容的时候遇到了一个PHP报错,如下:
Function create_function() is deprecated
解决方法如下
原代码:
[php]add_action('widgets_init', create_function('', 'return register_widget("xintheme_hotpost");'));[/php]
解决方案:修改create_function
[php]add_action('widgets_init', function(){register_widget('xintheme_hotpost' );});[/php]
不保证这个是最好的修改方法,仅供参考......
0条评论