Skip to content

Instantly share code, notes, and snippets.

@jpmarchand
Created October 21, 2015 19:54
Show Gist options
  • Select an option

  • Save jpmarchand/beacc17158f5655d4651 to your computer and use it in GitHub Desktop.

Select an option

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/
<?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