What is WordPress Admin Bar?
WordPress admin bar is a floating bar displayed for logged in users. It contains links to different admin screens, which allows logged in users to quickly switch to admin area when viewing the website.
The admin bar is displayed for all users inside the admin area. Individual users can hide the admin bar when viewing the website by editing their user profile.
The items displayed in the WordPress admin bar change based on user role and permissions. For example, users with administrator role see different items in the menu bar than users with editor role and so on.
Show or Hide Items in WordPress Admin Bar
Just like everything else in WordPress, the Admin bar is fully customizable via custom code or plugins. Some plugins already take advantage of this feature by adding their own menus in the admin bar.
To take control of the admin bar, first you will need to install and activate the Adminimize plugin. For more details, see our step by step guide on how to install a WordPress plugin.
Upon activation, go to Settings » Adminimize page and look for Admin Bar Backend Options and Admin Bar Front End Options tabs.
Clicking on each of them will take you to the admin bar options where you can select which items to display in WordPress admin bar. You can also choose items visible to each user role.
Don’t forget to click on ‘Update options’ button to save your changes.
Adminimize is a powerful plugin and allows you to change not just the admin bar but any admin screen on your WordPress site. To learn more, see our guide on how to hide unnecessary items from WordPress admin with Adminimize
Add Custom Links to WordPress Admin Bar
The purpose of the WordPress admin bar is to provide quick shortcuts to different admin screens. You can further customize it by adding your own custom links to the admin bar.
For this, you will need to add custom code to your WordPress files. If you haven’t done this before, then take a look at our guide on how to copy and paste code in WordPress.
First you need to add this code to your theme’s functions.php file or a site-specific plugin.
Tables can't be imported directly. Please insert an image of your table which can be found here.
1 2 3 4 5 6 7 8 9 10 11 12 13 14
In this code, we have added a link to Google that searches WPBeginner. You need to replace ID, title, and href values with your own.
For more details, see our guide on how to easily add custom links to your WordPress admin bar.
Disable Admin Bar for All Users Except Administrators
Admin bar is highly useful for site administrators, editors, and authors. However, it is not very useful if you are running a WordPress membership website or just require users to login for certain tasks.
In that case, you may want to disable the admin bar for all users except site administrators. You will need to add the following code to your theme’s functions.php file or a site-specific plugin.
Tables can't be imported directly. Please insert an image of your table which can be found here.
1 2 3 4 5 6 7
For more details see our article on how to disable WordPress admin bar for all users except administrators.