web-dev-qa-db-ja.com

ハウディドロップダウンメニューのコンテンツを削除する方法

enter image description here

どうすれば.ab-sub-wrapper内のコンテンツを削除できますが、[ログアウト]と[自分のプロファイルの編集]リンクを維持する方法を教えてください。ただ物事を守りたい素敵できれい

1
William Jerome

あなたはプロファイルメニューをカスタマイズするためにwordpress ノード を使うことができます。

これを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