Hide the wp-admin bar from dashboard
I want to hide the admin bar from dashboard. I tried with following code:
add_action('after_setup_theme', 'remove_admin_bar');
function remove_admin_bar() {
if (!current_user_can('administrator') !is_admin()) {
show_admin_bar(false);
}
}
It hide the admin bar when a logged in admin visit as front-end user. I actually want to hide the admin bar from dashboard back-end as indicated by red arrow in the following picture:
Any help is appreciated.