我刚刚在子函数php中添加了此代码,它的作用是从评论中删除零数字,但是当在任何产品中均未启用评论时,它将显示错误。 我该如何解决?
// remove zero reviews
add_filter( 'woocommerce_product_tabs', 'wp_woo_rename_reviews_tab', 98);
function wp_woo_rename_reviews_tab($tabs) {
global $product;
$check_product_review_count = $product->get_review_count();
if ( $check_product_review_count == 0 ) {
$tabs['reviews']['title'] = 'Reviews';
} else {
$tabs['reviews']['title'] = 'Reviews('.$check_product_review_count.')';
}
return $tabs;
}
错误: