Change Howdy Text in WordPress Admin

Written by on June 21, 2011 in WordPress - No comments
cowboy

Ever wonder how to replace that cheesy ‘Howdy’ text that shows up in the WordPress admin? It’s actually rather easy to replace, and is one of the main things I do on every WordPress install now. Pop the following code into your function.php file in your theme, and change the text to something less.. lame.

/**REPLACE HOWDY**/
        add_filter('admin_user_info_links','howdy_msg');
        function howdy_msg($links) {
                $greeting = 'Welcome Back';
                $links['5'] = str_replace('Howdy',$greeting, $links['5']);
                return $links;
        }
/**END REPLACE HOWDY**/

replace howdy text wordpress

Source

About the Author

Mike Ilsley "ilz" is a Boston based website designer, front-end developer, WordPress addict, owner of Beantown Design, and exclusive ThemeForest author. Check him out on Twitter, Facebook, Google+ and don't forget to subscribe to the WebDesign&Such email RSS feed. Also, check out his latest project, jQueryMobileShowcase.com.