Created
October 3, 2015 17:33
-
-
Save brunopulis/f8dccf466b49af505672 to your computer and use it in GitHub Desktop.
Remove Admin Toolbar on Wordpress
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Call the action | |
remove_action('init', 'wp_admin_bar_init'); | |
function my_function_admin_bar(){ | |
return false; | |
} | |
add_filter( 'show_admin_bar' , 'my_function_admin_bar'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment