How to disable the WordPress 3.1 Admin Bar

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

Continue reading →