web-dev-qa-db-fra.com

Comment supprimer le contenu du menu déroulant

enter image description here

J'aimerais savoir comment je peux supprimer du contenu dans .ab-sous-wrapper tout en conservant les liens Déconnexion et Modifier mon profil? Je veux juste garder les choses bien et bien rangé

1
William Jerome

Vous pouvez utiliser les nœuds wordpress pour personnaliser le menu du profil.

Ajoutez ceci dans functions.php

add_action( 'admin_bar_menu', 'remove_my_account', 999 );
function remove_my_account( $wp_admin_bar ) {
   $wp_admin_bar->remove_node( 'my-account' );
}

add_action( 'admin_bar_menu', 'add_logout', 999 );
function 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 );
}
2
Atlas_Gondal