Created
November 29, 2013 02:46
-
-
Save randyjensen/7700921 to your computer and use it in GitHub Desktop.
Add custom "Enter title here" text in WordPress
This file contains hidden or 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
// Change Placeholder text for Post/Page/CPT Title | |
add_filter( 'enter_title_here', 'change_title_placeholder' ); | |
function change_title_placeholder( $title ) | |
{ | |
$screen = get_current_screen(); | |
if ( 'POSTTYPE' == $screen->post_type ){ | |
$title = 'Some custom text'; | |
} | |
return $title; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment