I have found some code which adds the category as a class to the body here: https://css-tricks.com/snippets/wordpress/add-category-name-body_class/ but it only seems to add one category. Does anyone know how to adjust this code so that it can add multiple category classes to the body?
add_filter('body_class','add_category_to_single');
function add_category_to_single($classes, $class) {
if (is_single() ) {
global $post;
foreach((get_the_category($post->ID)) as $category) {
// add category slug to the $classes array
$classes[] = $category->category_nicename;
}
}
// return the $classes array
return $classes;
}