Change Editor Title Placeholder Text
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
//**********************************************
// Testimonial Editor Title Placeholder Text
//**********************************************
add_filter( 'enter_title_here', 'pb_change_testimonial_title_placeholder_text' );
function pb_change_testimonial_title_placeholder_text( $title ){
$screen = get_current_screen();
if( isset( $screen->post_type ) ) {
if ( 'pb_testimonials' == $screen->post_type ) {
$title = 'Enter client\'s name here';
}
}
return $title;
}