In the WordPress Dashboard
Users –> Edit User/Admin –> Uncheck “Show Admin Bar”

OR
Open functions.php (or custom_functions.php for Thesis)
// Disable Admin Bar
add_filter('show_admin_bar', '__return_false');
// Remove the Admin Bar option in user profile
remove_action('personal_options', '_admin_bar_preferences');For more kick-ass options, check out: @Yoast










