Add groups as body classes
-
Hi, I was wondering if someone could share some code that would add the users Groups to the body classes, similair to this code:-
add_filter('body_class', function($classes) { global $current_user; foreach ($current_user->roles as $user_role) { $classes[] = 'role-'. $user_role; } return $classes; });
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Add groups as body classes’ is closed to new replies.