get term name from the url wordpress code example
Example 1: wp get term link
$term_link = get_term_link($term);
Example 2: get term id
get_queried_object()->term_id;
$term_link = get_term_link($term);
get_queried_object()->term_id;