Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@braddalton
Last active May 21, 2018 20:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braddalton/f420a758c3bf3e50cf40c321dd48652c to your computer and use it in GitHub Desktop.
Save braddalton/f420a758c3bf3e50cf40c321dd48652c to your computer and use it in GitHub Desktop.
Modify Howdy in Admin Bar https://wp.me/p1lTu0-hw4
add_filter( 'admin_bar_menu', 'replace_howdy', 25 );
function replace_howdy( $wp_admin_bar ) {
$my_account = $wp_admin_bar->get_node('my-account');
$newtitle = str_replace( 'Howdy,', 'Welcome,', $my_account->title );
$wp_admin_bar->add_node( array(
'id' => 'my-account',
'title' => $newtitle,
) );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment