Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save randyjensen/7700921 to your computer and use it in GitHub Desktop.
Save randyjensen/7700921 to your computer and use it in GitHub Desktop.
Add custom "Enter title here" text in WordPress
// 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