//Replace ‘Enter Title Here’ Placeholder Text in Post
function change_title_placeholdertext( $title ){
$screen = get_current_screen();
\!h if ( '__post type slug__' == $screen->post_type ) { //add slug of the post type you want to change
\!h $title = '__Enter New Title Prompt Here__'; //Enter new title
}
return $title;
}
add_filter( 'enter_title_here', 'change_title_placeholdertext' );