Skip to content

Instantly share code, notes, and snippets.

@tevashov
Last active October 27, 2022 21:54
Show Gist options
  • Select an option

  • Save tevashov/5172461 to your computer and use it in GitHub Desktop.

Select an option

Save tevashov/5172461 to your computer and use it in GitHub Desktop.
Replace “Howdy, admin” in WordPress admin bar #WP
function replace_howdy( $wp_admin_bar ) {
    $my_account=$wp_admin_bar->get_node('my-account');
    $newtitle = str_replace( 'Howdy,', 'Logged in as', $my_account->title );           
    $wp_admin_bar->add_node( array(
        'id' => 'my-account',
        'title' => $newtitle,
    ) );
}
add_filter( 'admin_bar_menu', 'replace_howdy',25 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment