WP: add category to body_class
<?php
// TODO: rewrite as filter
$class = array();
$prefix = 'category-'';
foreach(get_the_category() as $category) {
$class[] = $prefix . $category->slug;
$class[] = $prefix . $category->cat_ID;
}
?>
<body <?php body_class( $class ); ?>>