Interview with Evan Skolnick on Video Game Storytelling
Help me out, let others know:
Related
add_filter( 'get_the_archive_title', 'custom_clean_archive_title' );
function custom_clean_archive_title( $title ) {
if ( is_category() ) {
return single_cat_title( '', false );
} elseif ( is_tag() ) {
return single_tag_title( '', false );
} elseif ( is_author() ) {
return get_the_author();
} elseif ( is_post_type_archive() ) {
return post_type_archive_title( '', false );
} elseif ( is_tax() ) {
return single_term_title( '', false );
}
return $title;
}