In questo semplice tutorial imparerete come sostituire il testo “Enter title here” con uno personalizzato.
Aggiungete il seguente snippet all’interno del vostro file functions.php:

 
function title_text_input( $title ){
return $title = ‘Enter new title’;
}
add_filter( ‘enter_title_here’, ‘title_text_input’ );
 

fonte: www.sastgroup.com ? Vai al post originale