Created
May 18, 2018 07:49
-
-
Save fahidjavid/6805ca06ad09de9ed0cd1f54b47abaf4 to your computer and use it in GitHub Desktop.
Replace "Enter Title Here" placeholder text
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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