Skip to content

Instantly share code, notes, and snippets.

@digitalinkwell
Created July 16, 2015 19:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save digitalinkwell/02f7f098e17a1ae33860 to your computer and use it in GitHub Desktop.
Save digitalinkwell/02f7f098e17a1ae33860 to your computer and use it in GitHub Desktop.
add_filter('gettext', 'change_howdy', 10, 3);
function change_howdy($translated, $text, $domain) {
if (!is_admin() || 'default' != $domain)
return $translated;
if (false !== strpos($translated, 'Howdy'))
return str_replace('Howdy', 'Welcome', $translated);
return $translated;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment