With new WordPress version released, there shows a admin bar to all logged in user in WordPress, which can be irritating for some people. This tutorial will show you how to remove it in one single step.

Procedure:

Note: Do take backup of the file before you try this.

01. Place this code in functions.php file:

wp_deregister_script('admin-bar');
wp_deregister_style('admin-bar');
remove_action('wp_footer','wp_admin_bar_render',1000);


This concludes this simple and useful tutorial. Hope you like it.