woocommerce 删除产品页面review(0)

/**
 * 删除产品页面reviews(0)
 **/
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;
}

 

原文链接:https://www.abaoge.com/post/4836.html,转载请注明出处。

0

评论0

没有账号?注册  忘记密码?