EduardET

Untitled

Feb 19th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. // Set the Role as a body class
  2. function add_role_to_body($classes) {
  3.    
  4.     global $current_user;
  5.     $user_role = array_shift($current_user->roles);
  6.    
  7.     $classes[] = 'role-'. $user_role;
  8.     return $classes;
  9. }
  10. add_filter('body_class','add_role_to_body');
Advertisement
Add Comment
Please, Sign In to add comment