50

对于我的 WC 产品页面,我需要向 body 标记添加一个类,以便我可以执行一些自定义样式。这是我为此创建的功能...

function my_add_woo_cat_class($classes) {

    $wooCatIdForThisProduct = "?????"; //help!

    // add 'class-name' to the $classes array
    $classes[] = 'my-woo-cat-id-' . $wooCatIdForThisProduct;
    // return the $classes array
    return $classes;
}

//If we're showing a WC product page
if (is_product()) {
    // Add specific CSS class by filter
    add_filter('body_class','my_add_woo_cat_class');
}

...但是我如何获得 WooCommerce 猫 ID?

4

6 回答 6

110

一个 WC 产品可能不属于任何一个、一个或多个 WC 类别。假设您只想获得一个 WC 类别 ID。

global $post;
$terms = get_the_terms( $post->ID, 'product_cat' );
foreach ($terms as $term) {
    $product_cat_id = $term->term_id;
    break;
}

请查看 WooCommerce 插件的“templates/single-product/”文件夹中的 meta.php 文件。

<?php echo $product->get_categories( ', ', '<span class="posted_in">' . _n( 'Category:', 'Categories:', sizeof( get_the_terms( $post->ID, 'product_cat' ) ), 'woocommerce' ) . ' ', '.</span>' ); ?>
于 2013-03-11T08:51:40.077 回答
11

$product->get_categories()自 3.0 版起已弃用!改为使用wc_get_product_category_list

https://docs.woocommerce.com/wc-apidocs/function-wc_get_product_category_list.html

于 2018-08-04T11:53:01.033 回答
9

我从位于我的主题目录的 woocommerce 文件夹中的 content-single-popup.php 中删除了这行代码。

global $product; 
echo $product->get_categories( ', ', ' ' . _n( ' ', '  ', $cat_count, 'woocommerce' ) . ' ', ' ' );

由于我正在研究的主题已在其中集成了 woocommerce,因此这是我的解决方案。

于 2015-05-29T12:33:10.637 回答
5

谢谢框。我正在使用 MyStile 主题,我需要在搜索结果页面中显示产品类别名称。我将此功能添加到我的子主题functions.php

希望它可以帮助别人。

/* Post Meta */


if (!function_exists( 'woo_post_meta')) {
    function woo_post_meta( ) {
        global $woo_options;
        global $post;

        $terms = get_the_terms( $post->ID, 'product_cat' );
        foreach ($terms as $term) {
            $product_cat = $term->name;
            break;
        }

?>
<aside class="post-meta">
    <ul>
        <li class="post-category">
            <?php the_category( ', ', $post->ID) ?>
                        <?php echo $product_cat; ?>

        </li>
        <?php the_tags( '<li class="tags">', ', ', '</li>' ); ?>
        <?php if ( isset( $woo_options['woo_post_content'] ) && $woo_options['woo_post_content'] == 'excerpt' ) { ?>
            <li class="comments"><?php comments_popup_link( __( 'Leave a comment', 'woothemes' ), __( '1 Comment', 'woothemes' ), __( '% Comments', 'woothemes' ) ); ?></li>
        <?php } ?>
        <?php edit_post_link( __( 'Edit', 'woothemes' ), '<li class="edit">', '</li>' ); ?>
    </ul>
</aside>
<?php
    }
}


?>
于 2014-06-20T16:47:17.633 回答
0
<?php
   $terms = get_the_terms($product->ID, 'product_cat');
      foreach ($terms as $term) {

        $product_cat = $term->name;
           echo $product_cat;
             break;
  }
 ?>
于 2020-08-19T08:55:59.147 回答
0

要将自定义类添加到 body 标签,您可以使用该body_class钩子。

要根据特定产品类别在产品页面上添加一个多个类别,您可以使用 Wordpress功能(检查产品是否属于该特定产品类别)has_term

为此,我创建了数组$classes_to_add,其中:

  • key:它可以是产品类别 ID(或 slug 或名称)。或者它们的数组。阅读文档
  • value : 包含要添加到 body 标记的类的字符串。如果要添加多个类,请创建一个包含多个值的字符串,以空格分隔(请参见下面的示例)

所以:

// adds a class to the body element based on the product category
add_filter( 'body_class', 'add_body_class_based_on_the_product_category' );
function add_body_class_based_on_the_product_category( $classes ) {

    // only on the product page
    if ( ! is_product() ) {
        return $classes;
    }

    // create an array with the ids (or slugs) of the product categories and the respective class (or classes) to add
    $classes_to_add = array(
        30          => 'class-1',
        'cat_slug'  => 'class-2 class-3',
        32          => 'class-4 class-5',
    );

    // if the product belongs to one of the product categories in the array it adds the respective class (or classes)
    foreach ( $classes_to_add as $product_cat => $new_classes ) {
        if ( has_term( $product_cat, 'product_cat', get_the_ID() ) ) {
             $classes[] = $new_classes;
        }
    }    

    return $classes;
}

该代码已经过测试并且可以工作。将它添加到您的活动主题的functions.php。

于 2021-03-06T23:42:17.103 回答