get taxonomy terms by post id wordpress code example
Example 1: wordpress get taxonomy of a post
<?php $term_obj_list = get_the_terms( $post->ID, 'taxonomy_name' ); ?>
Example 2: How do I get current taxonomy "term id" on wordpress?
$obj = get_queried_object();
echo $obj->term_id;