Skip to content

Instantly share code, notes, and snippets.

@rezzz-dev
Created May 9, 2013 13:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rezzz-dev/5547553 to your computer and use it in GitHub Desktop.
Save rezzz-dev/5547553 to your computer and use it in GitHub Desktop.
Snippet: WP: Disable Admin Bar
/* Disable the Admin Bar & Setting in Profile. */
add_filter( 'show_admin_bar', '__return_false' );
function jr_hide_admin_bar_settings() {
?>
<style type="text/css">
.show-admin-bar {
display: none;
}
</style>
<?php
}
function jr_disable_admin_bar() {
add_filter( 'show_admin_bar', '__return_false' );
add_action( 'admin_print_scripts-profile.php', 'jr_hide_admin_bar_settings' );
}
add_action( 'init', 'jr_disable_admin_bar' , 9 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment