php - 将 body 类添加到类别及其所有子类别 |吴商务

标签 php wordpress woocommerce categories product

我想在查看类别及其所有子类别时将类添加到正文标记,下面的代码可以工作,但它只是将类添加到相关类别,而不是其所有子类别:

add_filter( 'body_class','custom_body_class' );
function custom_body_class( $classes ) {

    if ( is_product_category( 802 ) ) {
        $classes[] = 'class1';
    } else if ( is_product_category( array( 'femme', 'homme', 'enfant' ) ) ) {
        $classes[] = 'class2';
    }

    return $classes;

}

我尝试将 is_product_category 替换为 in_category 或 is_product_tag,但它也不起作用。

如有任何帮助,我们将不胜感激。

最佳答案

您需要使用相关的 WordPress 条件函数 has_term()使用 'product_cat' 分类参数以这种方式定位产品类别:

add_filter( 'body_class','custom_body_class' );
function custom_body_class( $classes ) {

    if ( has_term( 802, 'product_cat' ) ) { // assuming that 802 is the id of a product category.
        $classes[] = 'class1';
    } else if ( has_term( array( 'femme', 'homme', 'enfant' ), 'product_cat' ) ) {
        $classes[] = 'class2';
    }

    return $classes;

}

Update 2 (based on your comment):

当存档类别(或子类别)页面为空时,可以使用 get_queried_object() 函数获取当前术语对象并调整函数中的条件以适应处理这些情况。

这是代码:

add_filter( 'body_class','custom_body_class' );
function custom_body_class( $classes ) {

    // Only on product category (or subcategory) archives pages     
    if(is_product_category()):

    // Set HERE your Main category ID (the parent ID of subcategories IDs)
    $main_cat = 802;

    // Set HERE your subcategories slugs
    $sub_cats_arr = array( 'femme', 'homme', 'enfant' );

    // Getting the current term (object) of category or subcategory archives page 
    $term = get_queried_object();

    // All the needed data from current term (object)
    $term_id = $term->term_id; // term ID
    $term_slug = $term->slug; // term slug
    $term_name = $term->name; // term name
    $term_taxonomy = $term->taxonomy; // Always 'product_cat' for woocommerce product categories
    $term_parent_id = $term->parent; // the parent term_id

    // FOR YOUR MAIN CATEGORY ID '802' (Handle empty archive page case too)
    if ( has_term( $main_cat, $term_taxonomy ) || $term_id == $main_cat )
        $classes[] = 'class1';

    // FOR YOUR MAIN 3 SUBCATEGORIES SLUGS (Handle empty archive page case too)
    if ( has_term( $sub_cats_arr, $term_taxonomy ) || in_array($term_slug, $sub_cats_arr) )
            $classes[] = 'class2';

    endif;

    return $classes;

}

这样,您应该避免在查看不包含不添加您的正文自定义类的产品的类别或子类别时出现这种情况...

关于php - 将 body 类添加到类别及其所有子类别 |吴商务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40949159/

相关文章:

wordpress - 选择不同的文件夹来覆盖 woocommerce 模板

php - MySQL 错误 1054 : Unknown Column 'curent_timestamp' in field list

php - 使用ajax上传多文件以及表单提交

php - 如何仅在特定页面中 bundle.min.css(在我的例子中是 contact.php)

jquery - typeerror jquery(...).isotope 不是函数

jquery淡出隐藏所有DIVS

php - 删除 woocommerce 完整或基于订单元处理电子邮件

php - 查找交易文件中100笔交易中连续出现5个以上序号的事件

javascript - 将数组值从 php 复制到 javascript

javascript - 视频 iframe 不显示视频 wordpress https 错误