1
我正在使用內置的woocommerce類別小部件,此刻它同時顯示類別和子類別。隱藏woocommerce類別小部件的子類別
我排除通過這個代碼類別:
add_filter('woocommerce_product_categories_widget_args', 'organicweb_exclude_widget_category');
function organicweb_exclude_widget_category($args) {
// Enter the id of the category you want to exclude in place of '30'
$args['exclude'] = array('62');
return $args;
}
,但小部件仍顯示它的子類。
鏈接:http://tithaty.com.br/?post_type=product
類別隱藏的是Coleções(我設置爲父母),我想隱藏它的子類別,當前和今後加入的影片。
Colecao teste是一個子類別的例子。
任何想法?
謝謝