I’ve got nothing against the “Howdy” greeting in WordPress, but in case you do, this little snippet might just help you out.
It’s currently set to change “Howdy” to “Yo.” Just drop this in your functions.php file. I’ll turn it into a spiffy plugin later…
Update: This feature has been bundled into the Howdy Tweaks plugin.
<?php add_filter('admin_user_info_links','not_howdy'); function not_howdy($links) { $greeting = 'Yo'; $links['5'] = str_replace('Howdy',$greeting, $links['5']); return $links; } ?>
Note: Since WordPress 3.3, this does not work, but the Howdy Tweaks plugin is up-to-date.
I’m kind of partial to ‘Howdy’…but only b/c I’m from the south 🙂
I’ll probably put an array of interesting and extravagant greetings for my clients.