Skip to content

Instantly share code, notes, and snippets.

@ControlledChaos
Last active February 17, 2017 10:09
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 ControlledChaos/039b907aa2423576a4e6 to your computer and use it in GitHub Desktop.
Save ControlledChaos/039b907aa2423576a4e6 to your computer and use it in GitHub Desktop.
Replace title placeholder in custom post type

Replace Title Placeholder in Custom Post Types

WordPress Snippet

<?php
function ccd_change_cpt_title( $title ) {
$screen = get_current_screen();
if ( 'custom_post_type' == $screen->post_type ) {
$title = 'Placeholder Text';
}
return $title;
}
add_filter( 'enter_title_here', 'ccd_change_cpt_title' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment