通过 WooCommerce 中的 slug 获取产品属性标签名称

Get product attributes label name by its slug in WooCommerce

我已将 product_attributes 创建为:Color 有鼻涕虫 color / Size 有鼻涕虫 size

在产品中:如何通过 slug 显示 color Name/Label。

我尝试 wc_get_product_terms 但它是 color / size 的属性值而不是 var_dup(color / size) 信息。

您可以通过使用 wc_attribute_label() 的 slug 获得 product_attributes 标签名称,例如:

$attribute_slug       = 'color';
$attribute_taxonomy   = 'pa_' . $attr_slug; 

echo wc_attribute_label( $attribute_taxonomy );

$attribute_slug       = 'size';
$attribute_taxonomy   = 'pa_' . $attr_slug; 

echo wc_attribute_label( $attribute_taxonomy );