Modify Search Placeholder Text in Genesis Theme

Use this snippet to modify the placeholder text using the default WordPress search in a Genesis theme.

// Change search placeholder text
function wd_search_button_text( $text ) {
     return ( 'Search');
}
add_filter( 'genesis_search_text', 'wd_search_button_text' );