Hi there,
I would like to know how can display a multilevel custom taxonomy menu that expands depending of the current parent / children taxonomy that is selected.
Example:
-------------------
Taxonomy navigation
- taxonomy 1
- taxonomy 2
- taxonomy 3
-------------------
When I click the "taxonomy 1" link, the page of that taxonomy loads and the "Taxonomy navigation" list now also shows the children taxonomies of taxonomy 1 which becomes bold:
-------------------
Taxonomy navigation
- taxonomy 1 [selected]
-- taxonomy 1.1
-- taxonomy 1.2
-- taxonomy 1.3
- taxonomy 2
- taxonomy 3
-------------------
After that, when I click on "taxonomy 1.1" it should look like this:
-------------------
Taxonomy navigation
- taxonomy 1
-- taxonomy 1.1 [selected]
-- taxonomy 1.2
-- taxonomy 1.3
- taxonomy 2
- taxonomy 3
-------------------
So, it should work as a hierarchical menu and display the active state of the current taxonomy.
Thanks!