AI Verified

Name

Remove admin bar for non-admin users

About

This snippet will remove the black admin bar from the top of the window if the user is not an Administrator.

Language

PHP

Rating

Voted: 0 by 0 user(s)

Codevault

ibanner

Scroll down to see more snippets from this codevault.

Wordpress Compatability

The author has indicated that this snippet is compatable up to wordpress version: 6.1

Our AI bot has checked this snippet is compatable up to wordpress version: 6.1

Code Snippet Plugin Sync

Free & Pro

Download this snippet by clicking the download button, then head over to the Code Snippet Plugin settings in your wordpress admin dashboard, select the import menu then upload this file to import into your wordpress site.

Pro Only (Coming Soon)

You will be able to click a button and sync this snippet to your wordpress site automatically and from your dashboard manage all code snippets across all your wordpress sites that have the Code Snippets Pro plugin installed.

History

Last modified:

14/11/2022

Important Note

This snippet has the following status:

AI Verified

This snippet has been tested by our AI bot, see any comments below.

AI Bot Comments:

Found 0 vulnerabilities

Remove admin bar for non-admin users

 
                    
1/**
2 * remove_admin_bar
3 *
4 * @return void
5 */
6function ibanner_remove_admin_bar_for_non_admins() {
7 if (!current_user_can('administrator') && !is_admin()) {
8 show_admin_bar(false);
9 }
10}
11 
12add_action('after_setup_theme', 'ibanner_remove_admin_bar_for_non_admins');

0

Related Snippets

Please see some snippets below related to this snippet..

WordPress Admin

AI Verified

1

Disable plugin updates

Added: 1 year ago

Last Updated: 1 year ago

Some plugins just need to stay to that version. This snippet ensures that no automatic or manual update can be performed my anyone.

WordPress Admin

AI Verified

3

Remove admin nags

Added: 2 years ago

Last Updated: 3 weeks ago

Custom function to remove admin notices (remember to edit the classes)

WordPress Admin

AI Verified

0

Add Discount Selection to WordPress User

Added: 1 month ago

Last Updated: 4 weeks ago

This code add a discount field to the user profile in Wordpress

Other Snippets in this Codevault

These are some popular snippets from this users codevault..

WordPress Admin

AI Verified

0

Remove admin bar for non-admin users

Added: 2 years ago

Last Updated: 1 year ago

This snippet will remove the black admin bar from the top of the window if the user is not an Administrator.