I got list categories for custom post type:
<?php $property_cat_list = get_the_term_list( $post->ID, 'scyscraper', '', '<br>', '' );
echo '<div>'.$property_cat_list.'</div>';?>
But I need show these categories in hierarchical order. How do it?
Thank you!
This is help me.