Skip to content

Instantly share code, notes, and snippets.

@wpmu-authors
Created April 28, 2022 17:58
Show Gist options
  • Save wpmu-authors/6f87285d9cace97650c4b68ee6428fed to your computer and use it in GitHub Desktop.
Save wpmu-authors/6f87285d9cace97650c4b68ee6428fed 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