Change 'Howdy' greeting in WordPress
Although there are plenty of plugins for changing the howdy greeting in WordPress, here is a simple solution that you can add to your functions.php
to change the greeting as well.
/**
* Custom Greeting
*/
function custom_howdy( $text ) {
$greeting = 'Aloha';
if ( is_admin() ) {
$text = str_replace( 'Howdy', $greeting, $text );
}
return $text;
}
add_filter( 'gettext', 'custom_howdy' );
Just change the value of the $greeting
variable to whatever you want and you should be good to go.
Written by Mike King
Related protips
Have a fresh tip? Share with Coderwall community!
Post
Post a tip
Best
#Php
Authors
Sponsored by #native_company# — Learn More
#native_title#
#native_desc#