Powered by Blogger.

Disable Admin Bar in WordPress Via Code


Goto functions.php in theme directory


 if(!current_user_can('administrator')):  
 show_admin_bar(false);  
 endif;  

No comments