The new wordpress admin bar is a cool feature introduced in the newer wordpress versions.
However for some reasons you don’t like it ant want to get rid of it, here is what you can do.
Just put these two lines into function.php file of your theme. /* Disable the Admin Bar. */ add_filter( 'show_admin_bar', '__return_false' ); remove_action( 'personal_options', '_admin_bar_preferences' );
Save the file, and refresh your page. You will not see the admin bar.