>
Download This Plugin | |
Download Elegant Themes | |
Name | Private Admin Bar |
Version | 1.0 |
Author | Tobias Lundgren |
Rating | 0 |
Last updated | 2014-06-26 09:41:00 |
Downloads |
43
|
Download Plugins Speed Test plugin for Wordpress |
Home page PageSpeed score has been degraded by 0%, while Post page PageSpeed score has been degraded by 0%
Private Admin Bar plugin added 3 bytes of resources to the Home page and 7 bytes of resources to the sample Post page.
Private Admin Bar plugin added 0 new host(s) to the Home page and 0 new host(s) to the sample Post page.
Great! Private Admin Bar plugin ads no tables to your Wordpress blog database.A simple way to makes your Admin Bar hidden for non-logged users but visible for you.
You can also add the code to your functions.php if you don’t want the plugin:
// Hide Admin Bar for non-logged users
function hide_admin_bar()
{
if( is_user_logged_in() ){
return true;
}else{
return false;
}
}
add_filter('show_admin_bar', 'hide_admin_bar');