产品自定义属性的回声值 - WooCommerce

时间:2016-07-13 16:59:13

标签: php woocommerce attributes echo

我需要WordPress Woocommerce的帮助。

我如何回应产品自定义属性的值?

问题:属性值全部打印在一行中。 我需要在每行打印出1个值

这是我的代码。

global $product;

if ( ! $product->is_purchasable() ) {
  return;
}
$custom_attr_values = array_shift( wc_get_product_terms( $product->id, 'first-attribute-name', array( 'fields' => 'names' ) ) );
?>

<div class="selection">
  <font color="white">First Attribute Name</font>
  <select>
    <option value=""><?php
      $subheadingvalues = get_the_terms( $product->id, 'pa_first-attribute-name');
 foreach ( $subheadingvalues as $subheadingvalue ) {
        echo $subheadingvalue->name;
      }
      ?></option>
    <option value=""><?php
      $subheadingvalues = get_the_terms( $product->id, 'pa_first-attribute-name');

      foreach ( $subheadingvalues as $subheadingvalue ) {
        echo $subheadingvalue->name;
      }
      ?></option>
    <option value=""><?php
      $subheadingvalues = get_the_terms( $product->id, 'pa_first-attribute-name');

      foreach ( $subheadingvalues as $subheadingvalue ) {
        echo $subheadingvalue->name;
      }
      ?></option>
    <option value=""><?php
      $subheadingvalues = get_the_terms( $product->id, 'pa_first-attribute-name');

      foreach ( $subheadingvalues as $subheadingvalue ) {
        echo $subheadingvalue->name;
      }
      ?></option>
  </select>

1 个答案:

答案 0 :(得分:0)

您可以使用get_terms()函数获取下拉列表值列表http://codex.wordpress.org/Function_Reference/get_terms

如果您传入自定义属性名称,则会返回该分类中的术语列表。

global $product;
$custom_attr_values = array_shift( wc_get_product_terms( $product->id, 'custom_attr_name', array( 'fields' => 'names' ) ) );