Change default “Enter title here” text within post title input field
wordpress snippet
Adding this snippet to the functions.php of your wordpress theme will let you change the default “Enter title here” text that is displayed within post title input field.
snippet : PHPcopy
function title_text_input( $title ){
return $title = 'Enter new title';
}
add_filter( 'enter_title_here', 'title_text_input' );
this months featured snippets
- David
- MattStrange
- David
- MattStrange
- http://wpsnipp.com Kevin Chard
- http://gadgetsnewsline.com/ GadgetsNews
- http://wpsnipp.com Kevin Chard






