我正在使用woocommerce主题。使用自定义属性 Qun
创建了一些产品我想在产品图片下方的ca tegory页面上显示 Qun 。
is there any solution for that? have a look at the attached image.
i want to display that custom attribute on category page.
答案 0 :(得分:1)
你可以像这样使用while循环
if (have_posts()) {
while (have_posts()) {
the_post();
$key_1_values = get_post_meta( $post->ID, 'Qun' );
// check if the custom field has a value
if( ! empty( $key_1_value ) ) {
echo $key_1_value;
}
}
}
答案 1 :(得分:0)
试试这个
$result = array_shift(woocommerce_get_product_terms($product->id, 'attr/cate_name', 'names'));