Only show admin bar to administrators

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.  
<?php

// Snippet code goes here!
if (!current_user_can('administrator')) :
  show_admin_bar(false);
endif;

?>

Instructions:

Paste this code in your theme’s functions.php file to hide the admin bar to all logged in users except admins. Useful for sites that have public registration turned on.


Related links:
http://www.wpbeginner.com/wp-tutorials/how-to-disable-wordpress-admin-bar-for-all-users-except-administrators/
Share this snippet

If you like this snippet, share it with friends!