首页 > 解决方案 > 从 Woocommerce 中的产品评论选项卡菜单项中删除 (0)

问题描述

我刚刚在子函数 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;
}

错误:

错误截图

标签: phpwordpresswoocommerceproducthook-woocommerce

解决方案


推荐阅读