mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://www.wpbeginner.com/wp-tutorials/how-to-change-the-howdy-text-in-wordpress-3-3-admin-bar/
9 lines
318 B
Text
9 lines
318 B
Text
add_filter( 'admin_bar_menu', 'replace_wordpress_howdy', 25 );
|
|
function replace_wordpress_howdy( $wp_admin_bar ) {
|
|
$my_account = $wp_admin_bar->get_node('my-account');
|
|
$newtext = str_replace( 'Howdy,', 'Welcome,', $my_account->title );
|
|
$wp_admin_bar->add_node( array(
|
|
'id' => 'my-account',
|
|
'title' => $newtext,
|
|
) );
|
|
}
|