标签: plugins woocommerce
我有一系列产品ID,我希望获得每个产品的属性。
是否可以从产品ID获取属性列表?
答案 0 :(得分:0)
我找到了解决方案。
使用get_post_meta()获取属性,并使用get_terms()获取术语值列表,如:
$attribute = get_post_meta( $products->post->ID, '_product_attributes', true); get_terms($attribute);