由于工作原因,太久没有更新网站,今天打开网站发现网站不能访问,提示错误
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是对象类型就直接返回空,问题得以解决。( 网站源码之前已经分享过,需要的可以自行下载)