仅在 WooCommerce 中获取当前产品的产品标签

Get the Product tags for the current product only in WooCommerce

如何只显示当前单个产品页面的产品标签而不显示所有产品标签?

我发现了关于最流行标签的问题,但不是为了那个。

您可以使用函数 wp_get_post_terms() 函数用于 WooCommerce 'product_tag' 自定义分类法和定义的 产品 ID 这样:

$output = array();

// get an array of the WP_Term objects for a defined product ID
$terms = wp_get_post_terms( get_the_id(), 'product_tag' );

// Loop through each product tag for the current product
if( count($terms) > 0 ){
    foreach($terms as $term){
        $term_id = $term->term_id; // Product tag Id
        $term_name = $term->name; // Product tag Name
        $term_slug = $term->slug; // Product tag slug
        $term_link = get_term_link( $term, 'product_tag' ); // Product tag link

        // Set the product tag names in an array
        $output[] = '<a href="'.$term_link.'">'.$term_name.'</a>';
    }
    // Set the array in a coma separated string of product tags for example
    $output = implode( ', ', $output );

    // Display the coma separated string of the product tags
    echo $output;
}

已测试并有效。

您也可以用动态产品 ID 变量替换 get_the_id()

您现在可以使用 wc_get_product_tag_list() 函数获取产品标签列表。它支持在元素前后提供分隔符。

例子

<?php
    global $product;
?>
    <div class="product-tags">
        <?php echo wc_get_product_tag_list( $product->get_id(), ', ' ); ?>
    </div>