infoscigeek
11/21/2016 - 1:40 PM

Replacing Placeholder Text in a Custom Post Type

Replacing Placeholder Text in a Custom Post Type

//edit custom field placeholder text in title box
function wpb_change_title_text( $title ){
     $screen = get_current_screen();
 
     if  ( 'people' == $screen->post_type ) {
          $title = 'Enter full name, first and last';
     }
 
     return $title;
}
 
add_filter( 'enter_title_here', 'wpb_change_title_text' );