Por padrão, o espaço reservado para o campo de título de todos os tipos de post será o mesmo. Você pode alterar o padrão “Enter Title Here” para tipos de post personalizados.
Instruções: Adicione o seguinte código ao functions.php de seu tema do WordPress.
Você precisará atualizar o nome POST_TYPE
e o texto padrão no código abaixo.
function change_default_title( $title ){ $screen = get_current_screen(); if ( 'POST_TYPE' == $screen->post_type ) { $title = 'Enter Invoice Title'; } return $title; } add_filter( 'enter_title_here', 'change_default_title' );
Você também pode gostar de modificar os tipos de post personalizados no WordPress.
This doesnt seem to work (WP 3.8)
hello
how can i set one title for each post type i have? tx a lot!
add_filter(‘enter_title_here’, ‘my_title_place_holder’ , 20 , 2 );
function my_title_place_holder($title , $post){
if( $post->post_type == ‘portfolio’ ){
$my_title = “Add new Portfolio”;
return $my_title;
}
return $title;
}
[…] man in that camp is Kevin Chard from WPSnipp; he’s just doing it to help people out. For developers, you obviously can’t miss the […]