get current term url code example
Example 1: wp get term link
$term_link = get_term_link($term);
Example 2: wordpress get current taxonomy
$term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
echo $term->name; // will show the name
echo $term->slug; // will show the slug