Por defecto, el marcador de posición para el campo de título de todos los tipos de post será el mismo. Puede cambiar el valor predeterminado “Introducir título aquí” para los tipos de entrada personalizados.
Instrucciones: Añada el siguiente código al archivo functions.php de su tema de WordPress.
Tendrá que actualizar el nombre POST_TYPE
y el texto por defecto en el código de abajo.
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' );
También puedes disfrutar modificando los tipos de post personalizados en 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 […]