found the location…
Explore: header-functions.php (inc/header-functions.php)
now to do some tweaking…
function explore_header_title() {
if( is_archive() ) {
if ( is_category() ) :
$explore_header_title = single_cat_title( '', FALSE );
elseif ( is_tag() ) :
$explore_header_title = single_tag_title( '', FALSE );
elseif ( is_author() ) :
/* Queue the first post, that way we know
* what author we're dealing with (if that is the case).
*/
the_post();
$explore_header_title = sprintf( __( 'Author: %s', 'explore' ), '<span class="vcard">' . get_the_author() . '</span>' );
/* Since we called the_post() above, we need to
* rewind the loop back to the beginning that way
* we can run the loop properly, in full.
*/
rewind_posts();
elseif ( is_day() ) :
$explore_header_title = sprintf( __( 'Day: %s', 'explore' ), '<span>' . get_the_date() . '</span>' );
elseif ( is_month() ) :
$explore_header_title = sprintf( __( 'Month: %s', 'explore' ), '<span>' . get_the_date( 'F Y' ) . '</span>' );
elseif ( is_year() ) :
$explore_header_title = sprintf( __( 'Year: %s', 'explore' ), '<span>' . get_the_date( 'Y' ) . '</span>' );
elseif ( is_tax( 'post_format', 'post-format-aside' ) ) :
$explore_header_title = __( 'Asides', 'explore' );
elseif ( is_tax( 'post_format', 'post-format-image' ) ) :
$explore_header_title = __( 'Images', 'explore');
elseif ( is_tax( 'post_format', 'post-format-video' ) ) :
$explore_header_title = __( 'Videos', 'explore' );
elseif ( is_tax( 'post_format', 'post-format-quote' ) ) :
$explore_header_title = __( 'Quotes', 'explore' );
elseif ( is_tax( 'post_format', 'post-format-link' ) ) :
$explore_header_title = __( 'Links', 'explore' );
elseif ( is_tax( 'post_format', 'post-format-gallery' ) ) :
$explore_header_title = __( 'Gallery', 'explore' );
elseif ( is_tax( 'post_format', 'post-format-chat' ) ) :
$explore_header_title = __( 'Chat', 'explore' );
elseif ( is_tax( 'post_format', 'post-format-audio' ) ) :
$explore_header_title = __( 'Audio', 'explore' );
elseif ( is_tax( 'post_format', 'post-format-status' ) ) :
$explore_header_title = __( 'Status', 'explore' );
else :
$explore_header_title = __( 'Archives', 'explore' );
endif;
can see a bit in there… basically the end if there is no $explore_header_title then name them all Archives…
nice… at least that what it looks like…
was thinking I’d add a small snipped to catch it… but then… nah.. just change the last one….