Skip to content

Instantly share code, notes, and snippets.

@JudeRosario
Last active October 3, 2016 21:42
Show Gist options
  • Save JudeRosario/41733a9605c08da89d1fe8a99f67de7f to your computer and use it in GitHub Desktop.
Save JudeRosario/41733a9605c08da89d1fe8a99f67de7f to your computer and use it in GitHub Desktop.
WP form change placeholder
add_filter( 'get_search_form', 'i21321_search_text_replacer', 999, 1 ) ;
function i21321_search_text_replacer ($form) {
return str_replace('Type & Hit Enter to Search', 'Search in the website', $form ) ;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment