Custom taxonomy, get_the_terms, listing in order of parent > child
There are probably some better ways to do this but you can always do a three simple foreach loops. I wrote an example function that does the job well and should serve you as a good starting point: function print_taxonomic_ranks( $terms=”” ){ // check input if ( empty( $terms ) || is_wp_error( $terms ) || … Read more