Skip to content

Instantly share code, notes, and snippets.

@fahidjavid
Created May 18, 2018 07:49
Show Gist options
  • Save fahidjavid/6805ca06ad09de9ed0cd1f54b47abaf4 to your computer and use it in GitHub Desktop.
Save fahidjavid/6805ca06ad09de9ed0cd1f54b47abaf4 to your computer and use it in GitHub Desktop.
Replace "Enter Title Here" placeholder text
<?php
function PREFIX_change_title_text( $title ){
$screen = get_current_screen();
if ( 'events' == $screen->post_type ) { // Replace 'events' with key of your custom post type
$title = 'Enter event name with date';
}
return $title;
}
add_filter( 'enter_title_here', 'PREFIX_change_title_text' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment