Home › Forums › WordPress › Admin Customization › Change Howdy Text
- This topic has 0 replies, 1 voice, and was last updated 8 years, 2 months ago by Layer7web.
Viewing 0 reply threads
-
AuthorPosts
-
-
September 13, 2016 at 10:26 am #2485
Layer7webKeymasterPHP12345678910add_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;}
-
-
AuthorPosts
Viewing 0 reply threads
You must be logged in to reply to this topic.
Comments are closed.