#WooCommerce #Product #Category #Counter #Shortcode
add_shortcode( 'cat-counter', 'return_current_category_counter' );
function return_current_category_counter() {
$category = is_product_category() ? get_queried_object() : false;
return $category ? $category->count : false;
}