In a wordpress project i made a post type named 'product' and registered the texonomies named 'product_category' which is heirerchical. i added four catagories in the admin panel, those are 'oven','Nit','Textile','Garments'. Under each of these i added two more taxnomies call 'pant','shirt', again each of these two i wanted to add more three categories named 'man','woman','children'... Above all the structure i expected is,
Oven
-Pant
-Man
-Woman
-children
-Shirt
-Man
-Woman
-children
Nit
-Pant
-Man
-Woman
-children
-Shirt
-Man
-Woman
-children
Textile
->Pant
->Man
->Woman
->children
->Shirt
->Man
->Woman
->children
Garments
->Pant
->Man
->Woman
->children
->Shirt
->Man
->Woman
->children
And in the front end i want to show these just as the structure above, how can i show these taxonomies like this so that clicking the last level taxonomy, the realated posts will be displayed and for this how i should make the taxonomies? Thank You.