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