Created
November 28, 2014 06:41
-
-
Save pasadamedia/5be3168e55b43d576d6e to your computer and use it in GitHub Desktop.
Change placeholder text in search box input field.
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
/** | |
* Change placeholder text in search box input field. | |
* | |
*/ | |
function pasada_search_text( $text ) { | |
return esc_attr( 'Search this site' ); | |
} | |
add_filter( 'genesis_search_text', 'pasada_search_text' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment