Skip to content

Instantly share code, notes, and snippets.

@pasadamedia
Created November 28, 2014 06:41
Show Gist options
  • Save pasadamedia/5be3168e55b43d576d6e to your computer and use it in GitHub Desktop.
Save pasadamedia/5be3168e55b43d576d6e to your computer and use it in GitHub Desktop.
Change placeholder text in search box input field.
/**
* 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