A very annoying setting – WordPress displays the admin bar to all users logged into the site with their wordpress.com account. To remove the admin bar, add the following line to your functions.php file:
add_filter('show_admin_bar', '__return_false');
This uses a WordPress filter. Learn more about hooks in WordPress Hooks Explained.