Created
October 21, 2015 19:54
-
-
Save jpmarchand/beacc17158f5655d4651 to your computer and use it in GitHub Desktop.
Customize Genesis search form input box. Source: https://my.studiopress.com/snippets/search-form/
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
| <?php | |
| //* Customize Genesis search form input box | |
| add_filter('genesis_search_text', 'prefix_search_text'); | |
| function prefix_search_text($text) { | |
| return esc_attr('Search my blog...'); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment