Last active
June 5, 2019 14:39
-
-
Save SteveJonesDev/d3ca808f56537ae820930d55ec29718f to your computer and use it in GitHub Desktop.
Wordpress - Change Enter Title Here 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
| 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