Skip to content

Instantly share code, notes, and snippets.

@WebEndevSnippets
Created January 8, 2013 22:19
Show Gist options
  • Save WebEndevSnippets/4488519 to your computer and use it in GitHub Desktop.
Save WebEndevSnippets/4488519 to your computer and use it in GitHub Desktop.
WordPress: Change 'Enter Title Here' On A CPT
add_filter( 'enter_title_here', 'we_change_submissions_cpt_title' );
/**
* Change 'Enter Title Here' text for Submissions CPT
*
*/
function we_change_submissions_cpt_title( $title ){
$screen = get_current_screen();
if ( 'we_submission' == $screen->post_type ) {
$title = 'Enter Site Name';
}
return $title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment