Monday, October 1, 2012

Change default "Enter title here" text within post title input field

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' );

No comments:

Post a Comment