Skip to content

Instantly share code, notes, and snippets.

@tomharrigan
Created December 11, 2012 08:00
Show Gist options
  • Save tomharrigan/4256685 to your computer and use it in GitHub Desktop.
Save tomharrigan/4256685 to your computer and use it in GitHub Desktop.
translate
add_filter('gettext', 'translate_text');
add_filter('ngettext', 'translate_text');
function translate_text($translated) {
$translated = str_ireplace('Enter your current location below to generate directions to Diner.', 'Your Text Here', $translated);
return $translated;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment