今天進行一個WordPress主題的更新,在測試PHP7.2兼容的時候遇到了一個PHP報錯,如下:
Function create_function() is deprecated
PHP7.2 已經不推薦使用create_function函數(shù),所以我會立即糾正它。
原代碼:
[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]
由于PHP知識匱乏,小編不保證這個是最好的修改方法,僅供參考......
新主題官方微信公眾號
掃碼關注新主題(XinTheme)官方公眾號,本站動態(tài)早知道。
發(fā)布本站最新動態(tài)(新主題發(fā)布、主題更新)和WordPress相關技術文章。