Skip to content

Instantly share code, notes, and snippets.

@makbeta
Created October 29, 2013 20:14
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 makbeta/7221756 to your computer and use it in GitHub Desktop.
Save makbeta/7221756 to your computer and use it in GitHub Desktop.
CHANGE THE “ENTER TITLE HERE” TEXT IN WORDPRESS
<?php
function XXX_enter_title_here( $title ){
$screen = get_current_screen();
if ( 'custom_post_type' == $screen->post_type ) {
$title = 'Custom Post Type Title Text';
}
return $title;
}
add_filter( 'enter_title_here', 'XXX_enter_title_here' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment