Adding body classes in Drupal 7. Just a little code snippet that can be useful in some cases.
Source code viewer
/** * Implements hook_preprocess_html(). */ function HOOK_preprocess_html(&$variables) { $variables['classes_array'][] = 'my-class'; }Programming Language: PHP