Skip to content

Instantly share code, notes, and snippets.

@dankerizer
Created April 16, 2019 02:21
Show Gist options
  • Save dankerizer/abba74044fe02731b507c0f3591fb1f9 to your computer and use it in GitHub Desktop.
Save dankerizer/abba74044fe02731b507c0f3591fb1f9 to your computer and use it in GitHub Desktop.
Remove Category Text
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 $title;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment