Hiding the WP Admin Bar

There’s a few plugins for hiding the WordPress admin bar that shows up on top of your site when you’re logged in but it seems like overkill.

If you don’t care about preventing it from loading you can drop this in your stylesheet at wp-admin/themes.php?page=editcss to hide it.

html {
    margin-top: 0!important;
}

#wpadminbar {
    display: none;
}

Leave a Comment