Skip to content

Instantly share code, notes, and snippets.

@JiveDig
Created October 9, 2014 16:38
Show Gist options
  • Save JiveDig/291a81a59ef800acf459 to your computer and use it in GitHub Desktop.
Save JiveDig/291a81a59ef800acf459 to your computer and use it in GitHub Desktop.
Diable toolbar for non admins
<?php
//* Disable toolbar for non admins
add_action('after_setup_theme', 'mwm_remove_admin_bar');
function mwm_remove_admin_bar() {
if ( !current_user_can('administrator') && !is_admin() ) {
show_admin_bar(false);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment