Skip to content

Instantly share code, notes, and snippets.

@jo-snips
Created March 14, 2012 04:24
Show Gist options
  • Save jo-snips/2034074 to your computer and use it in GitHub Desktop.
Save jo-snips/2034074 to your computer and use it in GitHub Desktop.
Genesis: Filter Search Input Text
/*-------------------------------------------------------------------------------
Filter Search Box Text
-------------------------------------------------------------------------------*/
add_filter( 'genesis_search_text', 'custom_search_text' );
function custom_search_text($text) {
return esc_attr('Enter keywords, hit enter;');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment