如何添加与产品类别slug相关的body类?
谢谢!
答案 0 :(得分:2)
将此添加到您的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;
}
这个只适用于woocommerce产品页面,是的,我在测试网站上测试了这个。
答案 1 :(得分:1)
在Wordpress支持网站上有一个非常好的指南:Modify body_class() output to show category-{slug} for single posts
我已根据您的需要更改帖子中的代码:
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) {
echo $category->cat_name . ' ';
// add category slug to the $classes array
$classes[] = $category->slug;
}
}
// return the $classes array
return $classes;
}