Change "Enter title here" Text in new WordPress post
add_filter( 'enter_title_here', 'ts_enter_title_here' );
function ts_enter_title_here( $title ){
$screen = get_current_screen();
if ( 'custom_post_type' == $screen->post_type ) {
$title = 'Custom Post Type Title Text';
}
return $title;
}