Skip to content

Instantly share code, notes, and snippets.

@hmbashar
Created August 6, 2019 06:39
Show Gist options
  • Save hmbashar/96110bdfc27b1131d83f943b3c997bad to your computer and use it in GitHub Desktop.
Save hmbashar/96110bdfc27b1131d83f943b3c997bad to your computer and use it in GitHub Desktop.
How to change custom post title placeholder text
<?php
function social_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', 'social_change_title_text' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment