Skip to content

Instantly share code, notes, and snippets.

@SteveJonesDev
Last active June 5, 2019 14:39
Show Gist options
  • Select an option

  • Save SteveJonesDev/d3ca808f56537ae820930d55ec29718f to your computer and use it in GitHub Desktop.

Select an option

Save SteveJonesDev/d3ca808f56537ae820930d55ec29718f to your computer and use it in GitHub Desktop.
Wordpress - Change Enter Title Here Text
add_filter('enter_title_here', 'my_title_place_holder' , 20 , 2 );
function my_title_place_holder($title , $post){
if( $post->post_type == 'pet' ){
$my_title = "Animal Name";
return $my_title;
}
return $title;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment