I'm trying to output the title of a taxonomy page when viewing it...
So like, if i was on a 'tag' page i would go:
<?php if (is_tag()) {?>
<h1><?php single_cat_title(); ?></h1>
<?php } ?>
But how would i achieve the same thing for if the user is viewing a specific taxonomy page?
is_taxonomy() doesn't exist so i'm suck! :/