To disable the admin bar, append the following code into functions.php file.
<?php
/* Disable the Admin Bar. */
remove_action( 'init', 'wp_admin_bar_init' );
?>
The functions.php file is located inside the theme directory. You need to create one, if it does not exists yet.
Also add `add_filter('show_admin_bar', function() { return false; });`
ReplyDeleteAlso add add_filter('show_admin_bar', function() { return false; });
ReplyDelete