Skip to main content

Change Howdy Text

Home Forums WordPress Admin Customization Change Howdy Text

Viewing 0 reply threads
  • Author
    Posts
    • #2485

      Layer7web
      Keymaster
      add_filter('gettext', 'l7w_change_howdy', 10, 3);
      function l7w_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;
      }
Viewing 0 reply threads

You must be logged in to reply to this topic.