Answer the question
In order to leave comments, you need to log in
How to remove subcategories and how to add them?
How to remove subcategories when I only display main categories?
$all_categories = get_categories(array(
'taxonomy' => 'product_cat',
'show_count' => 0,
'pad_counts' => 0,
'hierarchical' => 0,
'hide_empty' => 0,
));
$all_categories = get_categories(array(
'taxonomy' => 'product_cat',
'show_count' => 0,
'pad_counts' => 0,
'hierarchical' => 0,
'hide_empty' => 0,
'child_of' => '15'
));
'child_of' => '15'
here I specified the category id, should I do this for each category through a condition or is there another way?
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question