How to Disable Admin Bar for All Users Except Admin?
-
I have tried:
add_action('after_setup_theme', 'remove_admin_bar'); function remove_admin_bar() { if (!current_user_can('administrator') && !is_admin()) { show_admin_bar(false); } }
…and also the plugin: Hide Admin Bar From Non-admins
It appears to work for PC and Android but I’m still seeing it on IOS. I wouldn’t really mind except the login bar covers the only ad shown on mobile devices. See pic. Link
Web site: Link
Please help =)
Michael
- The topic ‘How to Disable Admin Bar for All Users Except Admin?’ is closed to new replies.