{"id":3733,"date":"2016-04-19T13:55:00","date_gmt":"2016-04-19T13:55:00","guid":{"rendered":"https:\/\/purelysupp.com\/wordpress\/?p=3733"},"modified":"2022-10-17T13:46:08","modified_gmt":"2022-10-17T13:46:08","slug":"add-or-remove-links-from-the-wordpress-admin-bar","status":"publish","type":"post","link":"https:\/\/purelysupp.com\/wordpress\/wordpress-functionality\/add-or-remove-links-from-the-wordpress-admin-bar\/","title":{"rendered":"Add or Remove Links From the WordPress Admin Bar"},"content":{"rendered":"\n<p><strong>Use This Snippet to Add Links to Admin Toolbar<\/strong><\/p>\n\n\n\n<p>Add the following code to your WordPress theme&#8217;s function.php file, or a functionality plugin. Modify the example for your link.<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>diww where diww is the ID of your menu item.<\/li><li>my-blogs where my-blogs is the parent ID of your menu item.<\/li><li>Title of the link you want to add where Title of the link you want to add is the title you want to use for your menu item.<\/li><li>http:\/\/mysitesurl.com\/wp-admin.php where http:\/\/mysitesurl.com\/wp-admin.php is the admin url of your menu item.<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>\/** Use This Snippet to Add Links to Admin Toolbar *\/\n\nfunction my_admin_bar_link() {\n\tglobal $wp_admin_bar;\n\tif ( !is_super_admin() || !is_admin_bar_showing() )\n\t\treturn;\n\t$wp_admin_bar->add_menu( array(\n\t'id' => 'diww',\n\t'parent' => 'my-blogs',\n\t'title' => __( 'Title of the link you want to add'),\n\t'href' => admin_url( 'http:\/\/mysitesurl.com\/wp-admin.php' )\n\t) );\n}\nadd_action('admin_bar_menu', 'my_admin_bar_link');<\/code><\/pre>\n\n\n\n<p><strong> Use This Snippet to Remove Links to Admin Toolbar<\/strong><\/p>\n\n\n\n<p>Add the following code to your WordPress theme&#8217;s function.php file, or a functionality plugin. <\/p>\n\n\n\n<ul class=\"wp-block-list\"><li>my-blogs where my-blogs is the ID of the menu item you want to remove<\/li><li>my-account-with-avatar where my-account-with-avatar is the ID of the menu item you want to remove<\/li><\/ul>\n\n\n\n<pre class=\"wp-block-code\"><code>\/** Use This Snippet to Remove Links to Admin Toolbar *\/\n\nfunction remove_admin_bar_links() {\n\tglobal $wp_admin_bar;\n\t$wp_admin_bar->remove_menu('my-blogs');\n\t$wp_admin_bar->remove_menu('my-account-with-avatar');\n}\nadd_action( 'wp_before_admin_bar_render', 'remove_admin_bar_links' );<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Use This Snippet to Add Links to Admin Toolbar Add the following code to your WordPress theme&#8217;s function.php file, or a functionality plugin. Modify the example for your link. diww where diww is the ID of your menu item. my-blogs where my-blogs is the parent ID of your menu item. Title of the link you\u2026&nbsp;<a href=\"https:\/\/purelysupp.com\/wordpress\/wordpress-functionality\/add-or-remove-links-from-the-wordpress-admin-bar\/\" class=\"rmlink\">Read More<\/a><\/p>\n","protected":false},"author":1,"featured_media":3547,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","iawp_total_views":3,"wds_primary_category":87,"footnotes":""},"categories":[87],"tags":[154,110],"class_list":{"0":"post-3733","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-wordpress-functionality","8":"tag-admin-menu","9":"tag-code","10":"entry"},"featured_image_src":"https:\/\/purelysupp.com\/wordpress\/wp-content\/uploads\/sites\/2\/2018\/09\/code-snippits-600x400.jpg","featured_image_src_square":"https:\/\/purelysupp.com\/wordpress\/wp-content\/uploads\/sites\/2\/2018\/09\/code-snippits-600x515.jpg","author_info":{"display_name":"Jack Alltrade","author_link":"https:\/\/purelysupp.com\/wordpress\/author\/jacka11trade\/"},"_links":{"self":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3733","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/comments?post=3733"}],"version-history":[{"count":2,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3733\/revisions"}],"predecessor-version":[{"id":10716,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/posts\/3733\/revisions\/10716"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/media\/3547"}],"wp:attachment":[{"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/media?parent=3733"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/categories?post=3733"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/purelysupp.com\/wordpress\/wp-json\/wp\/v2\/tags?post=3733"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}