Only show admin bar to administrators
<?php
// Snippet code goes here!
if (!current_user_can('administrator')) :
show_admin_bar(false);
endif;
?>
Instructions:
Paste this code in your theme’s functions.php file to hide the admin bar to all logged in users except admins. Useful for sites that have public registration turned on.