Skip to content

Instantly share code, notes, and snippets.

@tomharrigan
Created February 6, 2014 16:03
Show Gist options
  • Select an option

  • Save tomharrigan/8847126 to your computer and use it in GitHub Desktop.

Select an option

Save tomharrigan/8847126 to your computer and use it in GitHub Desktop.
add_filter('gettext', 'translate_text');
add_filter('ngettext', 'translate_text');
function translate_text($translated) {
$translated = str_ireplace('Search for products', 'Search', $translated);
return $translated;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment