rozklad
4/19/2013 - 8:50 AM

WP: add category to body_class

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 ); ?>>