F
F
freeman02042017-10-16 16:05:19
PHP
freeman0204, 2017-10-16 16:05:19

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,
));

Also, when you click on any category, it should be displayed on the subcategory page.
$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 question

Ask a Question

731 491 924 answers to any question