I've successfully been able to include my custom taxonomy in a template page for a hierarchical taxonomy. However I cannot figure out what I need to do in the code for the template page to display the items according to their hierarchy.
Using
<?php echo get_the_term_list( get_the_ID(), 'clipart-theme', "Theme: ", ' » ' ) ?>
It just displays the parent & child terms alphabetically. What I want is for it to reflect the relationship.
For example, if my hierarchy is Beer (parent category) and then Amstel Light (child category), the above code outputs as Amstel Light >> Beer, but I want it to display as Beer >> Amstel Light.
What do I need to do to make this happen?