mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
14 lines
541 B
Text
14 lines
541 B
Text
add_action( 'admin_bar_menu', 'rpdab_remove_my_account', 999 );
|
|
function rpdab_remove_my_account( $wp_admin_bar ) {
|
|
$wp_admin_bar->remove_node( 'user-actions' );
|
|
}
|
|
|
|
add_action( 'admin_bar_menu', 'rpdab_add_logout', 999 );
|
|
function rpdab_add_logout( $wp_admin_bar ) {
|
|
$args = array(
|
|
'id' => 'logout', // id of the existing child node (New > Post)
|
|
'title' => 'Logout', // alter the title of existing node
|
|
'parent' => 'top-secondary', // set parent
|
|
);
|
|
$wp_admin_bar->add_node( $args );
|
|
}
|