Remove Admin Bar for all Users except for Administrators

jdunhin

Active member
Registered
Joined
Feb 27, 2013
Messages
72
Points
0
Paste the code in your themes function.php
PHP:
add_action('init', 'remove_admin_bar');
function remove_admin_bar() {
if (!current_user_can('administrator') && !is_admin()) {
  show_admin_bar(false);
}
}
Or remove it completely for all users
PHP:
show_admin_bar(false);
 

Marc0

Well-known member
Registered
Joined
Jun 6, 2012
Messages
889
Points
28
Thanks for good code!
It's great if you can show a screenshot in your tips to explain for everyone easy to understand.
 
Older Threads
Replies
2
Views
4,891
S
Replies
1
Views
4,252
Newer Threads
Replies
4
Views
4,729
Replies
3
Views
4,864
Replies
3
Views
4,821
Replies
0
Views
3,893
Replies
0
Views
2,850
Recommended Threads
Replies
1
Views
3,959
Replies
0
Views
3,000

Latest Hosting OffersNew Reviews

Sponsors

Tag Cloud

You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an alternative browser.

Top