Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save onjee/11899ac922bae76dea3f to your computer and use it in GitHub Desktop.
Save onjee/11899ac922bae76dea3f to your computer and use it in GitHub Desktop.
function fb_move_admin_bar() {
echo '
<style type="text/css">
body {
margin-top: -28px; padding-bottom: 28px;}
body.admin-bar #wphead {padding-top: 0;}
body.admin-bar #footer {padding-bottom: 28px;}
#wpadminbar {top: auto !important;bottom: 0;}
#wpadminbar .quicklinks .menupop ul {bottom: 28px;}
</style>';
}
// on backend area
add_action( 'admin_head', 'fb_move_admin_bar' );
// on frontend area
add_action( 'wp_head', 'fb_move_admin_bar' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment