How To Show the WordPress Toolbar for Specific User Roles
erics, September 1st, 2012
Add the following to the theme functions.php file:
1 2 3 4 5 6 7 |
function filter_admin_bar() { if ( current_user_can('manage_options') ) { return TRUE; } return FALSE; } add_filter('show_admin_bar', 'fiter_admin_bar'); |
More Info…