昨天我试着安装Thematic 主题,似乎非常多功能和优雅。然而,我在每个页面请求上都会出错,甚至对于管理员用户也是如此。
其中一个错误如下所示:
注意:自4.3.0版以来,主题\\u Widget\\u搜索中WP\\u Widget的调用构造函数方法已被弃用!请改用\\uu construct()。in/home/iecapxbq/public\\u html/wp包含/函数。php在线3900
但第3900行functions.php
是失败构造函数的总括。所有3个失败的构造函数都用于WP_Widget in Thematic_Widget_*
. 然而,我有时也会收到2条更详细的错误消息。第一个:
标题已由/home/iecapxbq/public\\u html/wp includes/functions.php:3900处开始的输出在/home/iecapxbq/public\\u html/wp admin/includes/misc中发送。php在线1114
在…上misc.php
第1114行,我找到以下代码:
header( sprintf( \'Referrer-Policy: %s\', $policy ) );
这看起来不像构造函数,尤其是在调用它时没有RHS。Visual Studio 2017。第二个:
警告:无法修改标题信息-标题已由/home/iecapxbq/public\\u html/wp includes/functions.php:3900)中的/home/iecapxbq/public\\u html/wp includes/pluggable发送。php在线1216
在里面pluggable.php
第1216行:
header("Location: $location", true, $status);
与其他详细错误相同的代码。那么我怀疑
header()
功能,但这仍然是在删除整个主题文件夹之后。
如果故障是header()
那么我可以创建一个覆盖错误主题的子主题吗header()
?
我使用的是PHP 7和WP 4.9。