Skip to content

Instantly share code, notes, and snippets.

@mindfullsilence
Created October 23, 2014 16:22
Show Gist options
  • Save mindfullsilence/12df8d84018ad5810542 to your computer and use it in GitHub Desktop.
Save mindfullsilence/12df8d84018ad5810542 to your computer and use it in GitHub Desktop.
Wordpress - static admin bar
if(!is_admin() && is_user_logged_in()) {
remove_action( 'wp_footer', 'wp_admin_bar_render');
add_action( 'wp_head', 'wp_admin_bar_render', 1000 );
function make_admin_bar_static() {
echo '
<style type="text/css">
html[lang] {
margin-top: 0px !important;
}
#wpadminbar {
position: static !important;
}
</style>
';
}
add_action('wp_head', 'make_admin_bar_static');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment