Skip to content

Instantly share code, notes, and snippets.

View nelsson's full-sized avatar

Nelson Villafuerte Orbezo nelsson

View GitHub Profile
@nelsson
nelsson / wp-role-bodyclass.php
Created November 27, 2017 17:02 — forked from jancbeck/wp-role-bodyclass.php
WordPress: Add user role class to body tag
<?php
// Add role class to body
function add_role_to_body($classes) {
global $current_user;
$user_role = array_shift($current_user->roles);
$classes .= 'role-'. $user_role;
return $classes;