我安装了WooCommerce WordPress主题。
我得到了一个公共用户可以看到的错误,所以我需要尽快修复它。
错误显示在所有产品页面上,以下是错误:
Warning: sizeof (): Parameter must be an array or an object that implements Countable
以下是相关代码:global $product, $post, $smof_data;
$cat_count = sizeof(get_the_terms($post->ID, \'product_cat\'));
$tag_count = sizeof(get_the_terms($post->ID, \'product_tag\'));
错误来自上述代码的最后一行。我可以检查一下get_the_terms($post->ID, \'product_tag\')
首先是数组,否则将其指定为空\'\'
或0。
但不确定这是否会影响其他代码。
如何在不影响任何其他相关代码的情况下解决此问题?