micalexander
4/22/2015 - 1:17 AM

Add body classes to Drupal

Add body classes to Drupal

/**
 * Preprocess html;
 * add page-pagname classes to the body element
 */
function hook_preprocess_html(&$vars) {
  $vars['attributes_array']['class'][] = $vars['classes_array'][] = 'page-' . drupal_html_class(drupal_get_title());
}