Mas*_* R. 7

将其添加到您的functions.php中

add_filter( 'body_class', 'wc_cat_names' );
function wc_cat_names( $classes ) {
    if(is_product()){
    global $post;
    $terms = get_the_terms( $post->ID, 'product_cat' );
        foreach ($terms as $term) {
            $classes[] = $term->slug;
        }
    }
    return $classes;
}
Run Code Online (Sandbox Code Playgroud)

该功能仅适用于 woocommerce 产品页面,是的,我在我的测试网站上测试了这一点。