Skip to content

Instantly share code, notes, and snippets.

@crossreftech
Last active August 29, 2015 13:56
Show Gist options
  • Save crossreftech/8813717 to your computer and use it in GitHub Desktop.
Save crossreftech/8813717 to your computer and use it in GitHub Desktop.
<?php
// Change the default Enter Title Here text
function custom_title_here_text( $title ){
$screen = get_current_screen();
if ( 'POST_TYPE' == $screen->post_type ) {
$title = 'Enter Custom Title';
}
return $title;
}
add_filter( 'enter_title_here', 'custom_title_here_text' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment