add_filter( 'get_the_archive_title', function ( $title ) {
if( is_category() || is_tag() ) {
$title = single_cat_title( '', false );
} elseif ( is_post_type_archive( 'videos-cpt' ) ) {
$title = 'Videos';
}
return $title;
});