Code-Snippets-Functions/Execute a function on a child site/WooCommerce/hide-product-count-category-view.txt
2019-03-29 09:42:54 -06:00

5 lines
150 B
Text

add_filter( 'woocommerce_subcategory_count_html', 'woo_remove_category_products_count' );
function woo_remove_category_products_count() {
return;
}