Advertisement
miriamdepaula

WordPress: Alterando o "Digite o título aqui"

Oct 8th, 2011
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1. <?php
  2. /*
  3. Alterando o texto "Digite o título aqui" (Enter the title here) para um determinado post type (post, page ou custom post type)
  4. Insira o código abaixo no arquivo functions.php
  5. */
  6.  
  7. function custom_title_text( $title ){
  8.   $screen = get_current_screen();
  9.   if ( 'SEU_POST_TYPE' == $screen->post_type ) {
  10.     $title = 'SEU TITULO CUSTOMIZADO AQUI';
  11.   }
  12.   return $title;
  13. }
  14. add_filter( 'enter_title_here', 'custom_title_text' );
  15.  
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement