Remove annoying WP Adminbar CSS
I am trying to remove the annoying WP Admin bar css.
style type="text/css" media="screen"
html { margin-top: 32px !important; }
* html body { margin-top: 32px !important; }
@media screen and ( max-width: 782px ) {
html { margin-top: 46px !important; }
* html body { margin-top: 46px !important; }
}
/style
I have tried (according to other OLD answers):
/**
* Remove admin bar CSS
*/
function remove_admin_login_header() {
remove_action('wp_head', '_admin_bar_bump_cb');
}
add_action('get_header', 'remove_admin_login_header');
It does not work.
Topic core php theme-development Wordpress
Category Web