woocommerce display categories/subcategories/products

Tudor-Radu Barbu picture Tudor-Radu Barbu · Apr 2, 2013 · Viewed 19.6k times · Source

is there any way to display the main categories with subcategories and their products in woocommerce? php or shortcode? I've tried with some conditional formatting,but nothing.

Answer

E. Serrano picture E. Serrano · Dec 18, 2013

You have two default shortcodes available to display both, product categories (with a specific parent category defined, to display subcategories,) and products contained inside a specific category.

To display top-level categories use the shortcode:

[product_categories parent="0"]

If you want to display subcategories, include the category ID inside the parent attribute.

To display products inside a category:

[product_category category="category-slug-here"]

Full reference for this shortcodes: product categories shortcode and products in category shortcode