https://akamist.com/blog/archives/1658
【まとめ】
・functions.phpに下記の関数を追加するだけで解決
/** カテゴリページのタイトルから “カテゴリ:”の接頭語を削除する */
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;
});