环境:宝塔面板php7.4+nginx1.22+mysql5.6+wordpress4.9.20
报错
Warning: call_user_func_array() expects parameter 1 to be a valid callback, function 'fake_update_callback' not found or invalid function name in /xxxx/wp-includes/class-wp-hook.php on line 288
网站前台正常,但是后台报错
一开始以为是搬家需要重新授权,但是问了老大说换主机不用重新授权,现在就不知道怎么解决这个问题了
一开始是关闭报错解决
@ini_set('display_errors','Off');
但是治标不治本,于是谷歌找到了解决办法
搜索
fake_update_callback
获得三条记录(因为用的4.9版本这是我diy自己加的),全部注释掉 问题就解决了
add_filter('pre_site_transient_update_core', 'fake_update_callback'); // 关闭核心提示 add_filter('pre_site_transient_update_plugins', 'fake_update_callback'); // 关闭插件提示 add_filter('pre_site_transient_update_themes', 'fake_update_callback'); // 关闭主题提示
刚上二年级