How to disable the WordPress 3.1 Admin Bar

Go to your User Profile in Admin section of your WordPressUncheck the box which says Show Admin Bar When Viewing Site.Click Update Profile buttonIf you are developer, then add this code into theme functions file (functions.php)add_filter( ‘show_admin_bar’, ‘__return_false’ );

Continue reading →