Display the taxonomy name of the current term

get_taxonomy( $taxonomy_name ) will give you an object containing all of the taxonomy metadata:

$queried_object = get_queried_object();
$this_tax = get_taxonomy( $queried_object->taxonomy );
echo $this_tax->labels->singular_name;

Leave a Comment