Hide admin tool bar from back end dashboard [duplicate]
WordPress page for show_admin_bar says: You cannot turn off the toolbar on the WordPress dashboard However, this trick works function remove_admin_bar() { ?> <style type=”text/css”> body { margin-top: -28px; } body.admin-bar #wphead { padding-top: 0; } #wpadminbar { display: none; } </style> <?php } add_action( ‘admin_head’, ‘remove_admin_bar’ ); In oreder to remove certain menus from … Read more