-
-
Save posgross/c40637b17c41975286891e4d925ddfb1 to your computer and use it in GitHub Desktop.
WordPress: Add user role class to body tag
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Add role class to body | |
function add_role_to_body($classes) { | |
foreach (wp_get_current_user()->roles as $user_role) { | |
$classes[] = 'role-'. $user_role; | |
} | |
return $classes; | |
}); | |
add_filter('body_class','add_role_to_body'); | |
add_filter('admin_body_class', 'add_role_to_body'); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment