wordpress出现错误Object of class WP_Error could not be converted to string in

由于工作原因,太久没有更新网站,今天打开网站发现网站不能访问,提示错误

Object of class WP_Error could not be converted to string in ***/wp-includes/rewrite.php ***行

错误位置代码如下

function _wp_filter_taxonomy_base( $base ) {
if ( ! empty( $base ) ) {
$base = preg_replace( '|^/index\.php/|', '', $base );
$base = trim( $base, '/' );
}
return $base;
}

检测后台采集,正常运行。有问题问度娘吧

将上段代码修改为

function _wp_filter_taxonomy_base( $base ) {
if (is_object($base)) {
return '';
}
if ( ! empty( $base ) ) {
$base = preg_replace( '|^/index\.php/|', '', $base );
$base = trim( $base, '/' );
}
return $base;
}

加一个判断函数,如果$base是对象类型就直接返回空,问题得以解决。( 网站源码之前已经分享过,需要的可以自行下载)

给TA买糖
共{{data.count}}人
人已赞赏
建站教程

宝塔面板数据库自动关闭解决办法

2020-11-19 22:02:43

建站教程网站源码

宝塔linux面板取消谷歌验证

2021-4-28 19:27:59

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索