- // add taxoonomy term to body_class
- function woo_custom_taxonomy_in_body_class( $classes ){
- if( is_singular() )
- {
- $custom_terms = get_the_terms(0, 'product_cat');
- if ($custom_terms) {
- foreach ($custom_terms as $custom_term) {
- $classes[] = $custom_term->slug;
- }
- }
- }
- return $classes;
- }
- add_filter( 'body_class', 'woo_custom_taxonomy_in_body_class' );