X

How to disable the WordPress admin bar for all users and visitors

Add the following code to your functions.php file and it will disable the WordPress admin bar for all users and visitors.

<?php remove_action( 'init', '_wp_admin_bar_init' ); ?>