function.phpに下記を追加
add_filter( 'get_the_archive_title', function ( $title ) {
    if( is_tax() ) {
        $title = single_cat_title( '', false );
    }
    return $title;
});

latest post

0