Last active
August 29, 2015 14:24
-
-
Save bwhli/dbf98b60fc320f2255e7 to your computer and use it in GitHub Desktop.
Customize Genesis Search Box Text
This file contains hidden or 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
//* Customize search form input box text | |
add_filter( 'genesis_search_text', 'sp_search_text' ); | |
function sp_search_text( $text ) { | |
return esc_attr( 'YourTextHere' ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment