get term id of taxonomy code example
Example 1: get term id
get_queried_object()->term_id;
Example 2: How do I get current taxonomy "term id" on wordpress?
$obj = get_queried_object();
echo $obj->term_id;
get_queried_object()->term_id;
$obj = get_queried_object();
echo $obj->term_id;