Catchable fatal error: Object of class WC_Cart could not be converted to string

Catchable fatal error: Object of class WC_Cart could not be converted to string

我刚刚更新了我的网上商店和 wordpress,每次我尝试查看商店页面时都会收到此错误:

Catchable fatal error: Object of class WC_Cart could not be converted to string in /var/www/eden-outcast.com/public_html/wp-includes/formatting.php on line 1109

但我似乎找不到问题或解决方案。

在第 1108 - 1113 行的 formatting.php 中,它说:

function wp_check_invalid_utf8( $string, $strip = false ) {
$string = (string) $string;
if ( 0 === strlen( $string ) ) {
    return '';
}

虽然我可能是数据库的问题。 有什么想法吗?

在您的活动主题/任何活动插件中的某处,其中任何一个都试图将 WC_Cart 对象用作字符串。

首先,您可以尝试停用您的主题,看看该通知是否消失。如果那个消失了,那么搜索你的主题源代码正是在 WC_Cart 对象被使用的地方。

如果没有,那对插件也一样,尝试一个一个地停用插件以找出有问题的插件并搜索源代码。