Last active
January 29, 2017 02:31
-
-
Save jpmarchand/ce8e50809936abc42efe to your computer and use it in GitHub Desktop.
Disable WordPress admin bar for all users except for administrators. Source: http://www.wpbeginner.com/wp-tutorials/how-to-disable-wordpress-admin-bar-for-all-users-except-administrators/
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//* Disable WordPress admin bar for all users except for administrators | |
function customprefix_remove_admin_bar() { | |
if (!current_user_can('administrator') && !is_admin()) { | |
show_admin_bar(false); | |
} | |
} | |
add_action('after_setup_theme', 'customprefix_remove_admin_bar'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment