Created
January 8, 2013 22:19
-
-
Save WebEndevSnippets/4488519 to your computer and use it in GitHub Desktop.
WordPress: Change 'Enter Title Here' On A CPT
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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