Customize the Search Form Input Box

Unless otherwise indicated, the code snippets you see below should be placed into your theme’s functions.php file.

Here is the code needed to customize the search form input box:

<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
 
//* Customize search form input box text
add_filter( 'genesis_search_text', 'sp_search_text' );
function sp_search_text( $text ) {
	return esc_attr( 'Search my blog...' );
}
What are your feelings