Skip to content

Instantly share code, notes, and snippets.

@AlexandrKutsenko
Created May 21, 2018 08:59
Show Gist options
  • Save AlexandrKutsenko/d1de6cb00dd157f61e07b4eb6cd78e5c to your computer and use it in GitHub Desktop.
Save AlexandrKutsenko/d1de6cb00dd157f61e07b4eb6cd78e5c to your computer and use it in GitHub Desktop.
Hide Admin bar of wordpress
/*
* Hide Admin bar of wordpress
*/
function hide_admin_bar() {
show_admin_bar(false);
}
add_action('init', 'hide_admin_bar');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment