Tell us what you are trying to do?
I'm trying to display all taxonomy names/titles on an archive page, on the specific post thumbnail. So basically I need to see from the archive page, what taxonomies that specific post belongs to and not the current term. It needs to be top hierarchical. So I don't need the terms to display but the taxonomy.
I've used the following shortcode but this only shows current term names:
[wpv-taxonomy-archive info="taxonomy"]
Hello. Thank you for contacting the Toolset support.
There is no native way to display the different taxonomy names assigned to post instead of taxonomy terms. You can display taxonomy terms.
To get all the taxonomy assigned to current post you should try to use the following function: get_object_taxonomies
=> https://developer.wordpress.org/reference/functions/get_object_taxonomies/
Where:
I suggest you should create a custom shortcode and use the above function to return the number of taxonomies assigned to current post.