HUSKY - Products Filter Professional for WooCommerce

woof_term_count_format

使其能够更改计数器格式 – 默认情况下,它传输‘(%d)

Example:

add_filter('woof_term_count_format', function ($format, $tax_slug) {
    $format = '|%d|';
    return $format;
}, 10, 2);