Change default “Enter title here” text within post title input field

Change default “Enter title here” text within post title input field

If for some reason you need to replace the “Enter title here” text within post title input field by a custom text, here is an easy way to do it. Define a new text on line 2, then paste the code into your functions.php file.

function title_text_input( $title ){

return $title = ‘Enter new title’;

}

add_filter( ‘enter_title_here’, ‘title_text_input’ );