Skip to content

Instantly share code, notes, and snippets.

@Shininglow
Created August 2, 2017 08:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Shininglow/1339e3c19334f3e70ddcdd9d8ffbe7d5 to your computer and use it in GitHub Desktop.
Save Shininglow/1339e3c19334f3e70ddcdd9d8ffbe7d5 to your computer and use it in GitHub Desktop.
function wpb_change_title_text( $title ){
$screen = get_current_screen();
if ( 'team' == $screen->post_type ) {
$title = 'Enter the team title';
}
return $title;
}
add_filter( 'enter_title_here', 'wpb_change_title_text' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment