Needed this for my custom taxonomy for code snippets, when navigating via the tags of my non-regular taxonomy/category terms. <?php $term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) ); echo $term->name; ?> I stuck this in to my 'archive.php' file in my theme (after line 30) <?php } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) {... Continue Reading →