Wordpress : How Do I get taxonomy name in taxonomy.php? Wordpress : How Do I get taxonomy name in taxonomy.php? wordpress wordpress

Wordpress : How Do I get taxonomy name in taxonomy.php?


A possible solution:

$taxonomy = get_queried_object();echo  $taxonomy->name;


For my taste is overly complicated, but here it goes:

$term = get_term_by('slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );echo $term->name;


get_query_var('taxonomy');

Just this should work.