在类别视图中隐藏产品数量
add_filter( 'woocommerce_subcategory_count_html', 'woo_remove_category_products_count' );
function woo_remove_category_products_count() {
return;
}
在哪里添加此代码?
将PHP代码放在主题或子主题functions.php文件的底部。
add_filter( 'woocommerce_subcategory_count_html', 'woo_remove_category_products_count' );
function woo_remove_category_products_count() {
return;
}
在哪里添加此代码?
将PHP代码放在主题或子主题functions.php文件的底部。
扫码打开当前页
之前