アーカイブの際の表示(カテゴリー名の前に「カテゴリー:」と表示しない)

add_filter( ‘get_the_archive_title’, function ($title) {

if ( is_category() ) {

$title = single_cat_title( ”, false );

} elseif ( is_tag() ) {

$title = single_tag_title( ”, false );

}

return $title;

});