Created
March 14, 2012 04:24
-
-
Save jo-snips/2034074 to your computer and use it in GitHub Desktop.
Genesis: Filter Search Input Text
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*------------------------------------------------------------------------------- | |
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