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,932
S
Replies
1
Views
4,275
Newer Threads
Replies
4
Views
4,753
Replies
3
Views
4,892
Replies
3
Views
4,854
Replies
0
Views
3,912
Replies
0
Views
2,903
Recommended Threads
Replies
13
Views
25,778
Replies
9
Views
5,465
Replies
15
Views
9,382

Latest postsNew threads

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