Custom class for product count links.
Parameters
- class – string with custom class.
Usage
<?php
function change_lgv_product_count_custom_class ( $class ) {
//your code here
return $class;
}
add_filter( 'lgv_product_count_custom_class', 'change_lgv_product_count_custom_class' );
?>