2011/10/05

Add content type to preprocess_html Drupal

Today i had to add the content type to style the body tag on a site using Drupal 7.

I altered the template.php file and the "newly" added theme_preprocess_html function to include the following lines.

if ($node = menu_get_object()) {
$vars['classes_array'][] = $node->type;
}