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
890
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
3,139
S
Replies
1
Views
3,093
Newer Threads
Replies
4
Views
3,735
Replies
3
Views
3,508
Replies
3
Views
2,984
Replies
0
Views
3,033
Replies
0
Views
1,906

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