提示Call to undefined function _deprecated_file()怎么办?

2020-06-12 08:30发布

wordpress程序提示Fatal error: Call to undefined function _deprecated_file() in /home/wwwroot/seekhill/public_html/wp-includes/registration.php on line 7错误代码,怎么解决?


1条回答
双念云
1楼 · 2020-06-12 11:21.采纳回答

wordpress网站的服务器根目录,找到/wp-includes/registration-functions.php文件,将代码

_deprecated_file( basename(__FILE__), ‘2.1’, null, __( ‘This file no longer needs to be included.’ ) );

修改为:

@_deprecated_file( basename(__FILE__), ’2.1′, null, __( ’This file no longer needs to be included.’ ) );