I have tried with add_filter('show_admin_bar', '__return_false');
in wordpress 4.8 version and its not hiding the admin bar.
Help me with a solution.
I have tried with add_filter('show_admin_bar', '__return_false');
in wordpress 4.8 version and its not hiding the admin bar.
Help me with a solution.
Try add_filter( 'show_admin_bar', '__return_false', PHP_INT_MAX );
Try this to remove admin bar for all roles except administrator
function remove_admin_bar()
{
if (current_user_can('administrator')) {
return true;
}
return false;
}
add_filter('show_admin_bar', 'remove_admin_bar', PHP_INT_MAX);