How can I hide the admin panel from my wordpress theme site during login to customize it?
2 answers
If you want to hide it for all users, paste this code in your theme's functions.php.
add_action('after_setup_theme', 'remove_admin_bar');
function remove_admin_bar() {
if (!current_user_can('administrator') && !is_admin()) {
show_admin_bar(false);
}
}
Or if you want to hide it for all users except admin then you need to add this code to funtions.php
show_admin_bar(false);
+1
source to share