How to change Custom Post Type - Archive page title
// add these to your function.php
function new_cpt_archive_title($title){
if ( is_post_type_archive('myCPT') ){
$title = 'My Custom post type archive - ' . get_bloginfo('name');
return $title;
}
return $title;
}
add_filter( 'pre_get_document_title', 'new_cpt_archive_title', 9999 );