Skip to content

Instantly share code, notes, and snippets.

@bwhli
Last active August 29, 2015 14:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bwhli/dbf98b60fc320f2255e7 to your computer and use it in GitHub Desktop.
Save bwhli/dbf98b60fc320f2255e7 to your computer and use it in GitHub Desktop.
Customize Genesis Search Box Text
//* 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