Created
September 29, 2011 10:13
-
-
Save NeilJS/1250447 to your computer and use it in GitHub Desktop.
Replace Wordpress Howdy in admin top right
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* replace WordPress Howdy | |
*/ | |
function goodbye_howdy($links) | |
{ | |
$links = str_replace( 'Howdy', 'Hello', $links ); | |
return $links; | |
} | |
add_filter( 'admin_user_info_links', 'goodbye_howdy' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment