{"id":1821,"date":"2014-12-18T07:33:27","date_gmt":"2014-12-18T07:33:27","guid":{"rendered":"http:\/\/www.vishmax.com\/en\/?p=1821"},"modified":"2014-12-20T06:41:38","modified_gmt":"2014-12-20T06:41:38","slug":"how-to-add-a-navigation-menu-to-wordpress-admin-bar","status":"publish","type":"post","link":"https:\/\/www.vishmax.com\/en\/labs\/how-to-add-a-navigation-menu-to-wordpress-admin-bar\/","title":{"rendered":"How to add a navigation menu to WordPress admin bar"},"content":{"rendered":"<p>If you want to add a new menu in the admin bar then the following code is useful. Just add the below code to your functions.php file in theme folder. The below will create \u201cMAX menu\u201d , you can rename it to ABC, MY MENU or whatever you like.<\/p>\n<pre lang=\"php\">\r\n\r\n<?php \r\n\r\nadd_action( 'admin_bar_menu', 'max_admin_bar_menu' );\r\nfunction max_admin_bar_menu( &#038;$wp_admin_bar ) {\r\n\t$menu = wp_get_nav_menu_object( 'MAX menu' );\r\n\t$menu_items = wp_get_nav_menu_items( $menu->term_id );\r\n\t$wp_admin_bar->add_menu( array(\r\n\t\t'id' => 'max-menu-0',\r\n\t\t'title' => 'MAX menu',\r\n\t) );\r\n\tforeach ( $menu_items as $menu_item ) {\r\n\t\t$wp_admin_bar->add_menu( array(\r\n\t\t\t'id' => 'max-menu-' . $menu_item->ID,\r\n\t\t\t'parent' => 'max-menu-' . $menu_item->menu_item_parent,\r\n\t\t\t'title' =>$menu_item->title,\r\n\t\t\t'href' =>$menu_item->url,\r\n\t\t\t'meta' => array(\r\n\t\t\t\t'title' =>$menu_item->attr_title,\r\n\t\t\t\t'target' =>$menu_item->target,\r\n\t\t\t\t'class' => implode( ' ', $menu_item->classes ),\r\n\t\t\t),\r\n\t\t) );\r\n\t}\r\n}\r\n\r\n?>\r\n\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>If you want to add a new menu in the admin bar then the following code is useful. Just add the below code to your functions.php file in theme folder. The below will create \u201cMAX menu\u201d , you can rename it to ABC, MY MENU or whatever you like.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[44],"tags":[72,83],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v20.2.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to add a navigation menu to WordPress admin bar - Vishmax.com<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"http:\/\/www.vishmax.com\/en\/labs\/how-to-add-a-navigation-menu-to-wordpress-admin-bar\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to add a navigation menu to WordPress admin bar - Vishmax.com\" \/>\n<meta property=\"og:description\" content=\"If you want to add a new menu in the admin bar then the following code is useful. Just add the below code to your functions.php file in theme folder. The below will create \u201cMAX menu\u201d , you can rename it to ABC, MY MENU or whatever you like.\" \/>\n<meta property=\"og:url\" content=\"http:\/\/www.vishmax.com\/en\/labs\/how-to-add-a-navigation-menu-to-wordpress-admin-bar\/\" \/>\n<meta property=\"og:site_name\" content=\"Vishmax.com\" \/>\n<meta property=\"article:published_time\" content=\"2014-12-18T07:33:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2014-12-20T06:41:38+00:00\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"http:\/\/www.vishmax.com\/en\/labs\/how-to-add-a-navigation-menu-to-wordpress-admin-bar\/#article\",\"isPartOf\":{\"@id\":\"http:\/\/www.vishmax.com\/en\/labs\/how-to-add-a-navigation-menu-to-wordpress-admin-bar\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"http:\/\/www.vishmax.com\/en\/#\/schema\/person\/785fa94b56eb17ae7706d30777d6ab93\"},\"headline\":\"How to add a navigation menu to WordPress admin bar\",\"datePublished\":\"2014-12-18T07:33:27+00:00\",\"dateModified\":\"2014-12-20T06:41:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"http:\/\/www.vishmax.com\/en\/labs\/how-to-add-a-navigation-menu-to-wordpress-admin-bar\/\"},\"wordCount\":59,\"publisher\":{\"@id\":\"http:\/\/www.vishmax.com\/en\/#organization\"},\"keywords\":[\"Code Library\",\"WP Snippets\"],\"articleSection\":[\"Labs\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"http:\/\/www.vishmax.com\/en\/labs\/how-to-add-a-navigation-menu-to-wordpress-admin-bar\/\",\"url\":\"http:\/\/www.vishmax.com\/en\/labs\/how-to-add-a-navigation-menu-to-wordpress-admin-bar\/\",\"name\":\"How to add a navigation menu to WordPress admin bar - Vishmax.com\",\"isPartOf\":{\"@id\":\"http:\/\/www.vishmax.com\/en\/#website\"},\"datePublished\":\"2014-12-18T07:33:27+00:00\",\"dateModified\":\"2014-12-20T06:41:38+00:00\",\"breadcrumb\":{\"@id\":\"http:\/\/www.vishmax.com\/en\/labs\/how-to-add-a-navigation-menu-to-wordpress-admin-bar\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"http:\/\/www.vishmax.com\/en\/labs\/how-to-add-a-navigation-menu-to-wordpress-admin-bar\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"http:\/\/www.vishmax.com\/en\/labs\/how-to-add-a-navigation-menu-to-wordpress-admin-bar\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/www.vishmax.com\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to add a navigation menu to WordPress admin bar\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/www.vishmax.com\/en\/#website\",\"url\":\"http:\/\/www.vishmax.com\/en\/\",\"name\":\"Vishmax.com\",\"description\":\"Software Company in Calicut for Web Design and eCommerce\",\"publisher\":{\"@id\":\"http:\/\/www.vishmax.com\/en\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/www.vishmax.com\/en\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/www.vishmax.com\/en\/#organization\",\"name\":\"Vishmax.com\",\"url\":\"http:\/\/www.vishmax.com\/en\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/www.vishmax.com\/en\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.vishmax.com\/en\/wp-content\/uploads\/2023\/03\/logo-vishmax.png\",\"contentUrl\":\"https:\/\/www.vishmax.com\/en\/wp-content\/uploads\/2023\/03\/logo-vishmax.png\",\"width\":150,\"height\":50,\"caption\":\"Vishmax.com\"},\"image\":{\"@id\":\"http:\/\/www.vishmax.com\/en\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"http:\/\/www.vishmax.com\/en\/#\/schema\/person\/785fa94b56eb17ae7706d30777d6ab93\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/www.vishmax.com\/en\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/e218268870406c917d20b442936d9e68?s=96&d=monsterid&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/e218268870406c917d20b442936d9e68?s=96&d=monsterid&r=g\",\"caption\":\"admin\"},\"url\":\"https:\/\/www.vishmax.com\/en\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to add a navigation menu to WordPress admin bar - Vishmax.com","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"http:\/\/www.vishmax.com\/en\/labs\/how-to-add-a-navigation-menu-to-wordpress-admin-bar\/","og_locale":"en_US","og_type":"article","og_title":"How to add a navigation menu to WordPress admin bar - Vishmax.com","og_description":"If you want to add a new menu in the admin bar then the following code is useful. Just add the below code to your functions.php file in theme folder. The below will create \u201cMAX menu\u201d , you can rename it to ABC, MY MENU or whatever you like.","og_url":"http:\/\/www.vishmax.com\/en\/labs\/how-to-add-a-navigation-menu-to-wordpress-admin-bar\/","og_site_name":"Vishmax.com","article_published_time":"2014-12-18T07:33:27+00:00","article_modified_time":"2014-12-20T06:41:38+00:00","author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"http:\/\/www.vishmax.com\/en\/labs\/how-to-add-a-navigation-menu-to-wordpress-admin-bar\/#article","isPartOf":{"@id":"http:\/\/www.vishmax.com\/en\/labs\/how-to-add-a-navigation-menu-to-wordpress-admin-bar\/"},"author":{"name":"admin","@id":"http:\/\/www.vishmax.com\/en\/#\/schema\/person\/785fa94b56eb17ae7706d30777d6ab93"},"headline":"How to add a navigation menu to WordPress admin bar","datePublished":"2014-12-18T07:33:27+00:00","dateModified":"2014-12-20T06:41:38+00:00","mainEntityOfPage":{"@id":"http:\/\/www.vishmax.com\/en\/labs\/how-to-add-a-navigation-menu-to-wordpress-admin-bar\/"},"wordCount":59,"publisher":{"@id":"http:\/\/www.vishmax.com\/en\/#organization"},"keywords":["Code Library","WP Snippets"],"articleSection":["Labs"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"http:\/\/www.vishmax.com\/en\/labs\/how-to-add-a-navigation-menu-to-wordpress-admin-bar\/","url":"http:\/\/www.vishmax.com\/en\/labs\/how-to-add-a-navigation-menu-to-wordpress-admin-bar\/","name":"How to add a navigation menu to WordPress admin bar - Vishmax.com","isPartOf":{"@id":"http:\/\/www.vishmax.com\/en\/#website"},"datePublished":"2014-12-18T07:33:27+00:00","dateModified":"2014-12-20T06:41:38+00:00","breadcrumb":{"@id":"http:\/\/www.vishmax.com\/en\/labs\/how-to-add-a-navigation-menu-to-wordpress-admin-bar\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["http:\/\/www.vishmax.com\/en\/labs\/how-to-add-a-navigation-menu-to-wordpress-admin-bar\/"]}]},{"@type":"BreadcrumbList","@id":"http:\/\/www.vishmax.com\/en\/labs\/how-to-add-a-navigation-menu-to-wordpress-admin-bar\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/www.vishmax.com\/en\/"},{"@type":"ListItem","position":2,"name":"How to add a navigation menu to WordPress admin bar"}]},{"@type":"WebSite","@id":"http:\/\/www.vishmax.com\/en\/#website","url":"http:\/\/www.vishmax.com\/en\/","name":"Vishmax.com","description":"Software Company in Calicut for Web Design and eCommerce","publisher":{"@id":"http:\/\/www.vishmax.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/www.vishmax.com\/en\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/www.vishmax.com\/en\/#organization","name":"Vishmax.com","url":"http:\/\/www.vishmax.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/www.vishmax.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/www.vishmax.com\/en\/wp-content\/uploads\/2023\/03\/logo-vishmax.png","contentUrl":"https:\/\/www.vishmax.com\/en\/wp-content\/uploads\/2023\/03\/logo-vishmax.png","width":150,"height":50,"caption":"Vishmax.com"},"image":{"@id":"http:\/\/www.vishmax.com\/en\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"http:\/\/www.vishmax.com\/en\/#\/schema\/person\/785fa94b56eb17ae7706d30777d6ab93","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/www.vishmax.com\/en\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/e218268870406c917d20b442936d9e68?s=96&d=monsterid&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e218268870406c917d20b442936d9e68?s=96&d=monsterid&r=g","caption":"admin"},"url":"https:\/\/www.vishmax.com\/en\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.vishmax.com\/en\/wp-json\/wp\/v2\/posts\/1821"}],"collection":[{"href":"https:\/\/www.vishmax.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.vishmax.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.vishmax.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.vishmax.com\/en\/wp-json\/wp\/v2\/comments?post=1821"}],"version-history":[{"count":0,"href":"https:\/\/www.vishmax.com\/en\/wp-json\/wp\/v2\/posts\/1821\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.vishmax.com\/en\/wp-json\/wp\/v2\/media?parent=1821"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.vishmax.com\/en\/wp-json\/wp\/v2\/categories?post=1821"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.vishmax.com\/en\/wp-json\/wp\/v2\/tags?post=1821"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}