To hide admin bar from frontend when you are logged in, You just need to add following code in your theme’s functions.php file.
add_filter('show_admin_bar', '__return_false');
That’s it, Enjoy!
Nov
15
2012
To hide admin bar from frontend when you are logged in, You just need to add following code in your theme’s functions.php file.
add_filter('show_admin_bar', '__return_false');
That’s it, Enjoy!