| by Scott Kilroy | No comments

Remove top navbar from wordpress

Edit wp-includes/functions.php and add the following

add_action('after_setup_theme', 'remove_admin_bar');

function remove_admin_bar() {
if (!current_user_can('administrator') && !is_admin()) {
show_admin_bar(false);
}
}

Now the top navbar will only showup for admin users.

Share Button

Leave a Reply