Skip to content

Instantly share code, notes, and snippets.

@Steeru
Created April 18, 2018 09:43
Show Gist options
  • Save Steeru/7e61dbdbe04a9619463235882af74a4f to your computer and use it in GitHub Desktop.
Save Steeru/7e61dbdbe04a9619463235882af74a4f to your computer and use it in GitHub Desktop.
add_filter( 'get_the_archive_title', function ($title) {
if ( is_category() ) {
$title = single_cat_title( '', false );
} elseif ( is_tag() ) {
$title = single_tag_title( '', false );
} elseif ( is_author() ) {
$title = '<span class="vcard">' . get_the_author() . '</span>' ;
}
return 'Change the tile as per your wish';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment