Skip to content

Instantly share code, notes, and snippets.

@dipakcg
Created October 31, 2014 04:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dipakcg/852c25ab3d50af8f1e39 to your computer and use it in GitHub Desktop.
Save dipakcg/852c25ab3d50af8f1e39 to your computer and use it in GitHub Desktop.
WordPress - Replace ‘Enter Title Here’ Text
/*
Replace ‘Enter Title Here’ Text in WordPress ( http://i.imgur.com/ZAzGY6g.png )
Add the following code in theme's functions.php file.
Read more at : http://gajjar.me/1q6ADaI
*/
function wpb_change_title_text( $title ){
$screen = get_current_screen();
if ( 'movie' == $screen->post_type ) {
$title = 'Enter movie name with release year';
}
return $title;
}
add_filter( 'enter_title_here', 'wpb_change_title_text' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment