Advertisement
miriamdepaula

WordPress: Change "Enter the title here"

Sep 11th, 2011
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. if($_GET['post_type'] == 'YOUR_POST_TYPE'){
  2.    add_filter( 'enter_title_here', 'change_enter_title_text', 10, 2 );
  3. }
  4.  
  5. function change_enter_title_text( $text, $post ) { 
  6.         return 'Escreva o seu novo titulo aqui';   
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement