wordpress woocommerce:如何在类别页面上显示产品自定义属性

时间:2013-08-08 04:55:02

标签: wordpress wordpress-plugin wordpress-theming woocommerce

我正在使用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.

enter image description here

2 个答案:

答案 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'));