web-dev-qa-db-ja.com

Woocommerce 3で商品属性を取得する

WooCommerceを更新した後、属性が表示されなくなりました。

テンプレートで_content-single-product.php_を使用すると、var_dump($attribute_names);オブジェクトの配列が取得されます。

foreach( $attribute_names as $attribute_name )では、データのスコープが保護されます。

このテンプレートのコードは次のとおりです。

_$attributes = $product->get_attributes();

<?php if($attributes) {echo "<p class='product-desc-title'>Параметры</p>";}  ?>          
<?php foreach ( $attributes as $attribute ) : ?>          
<?php
    if ( $attribute['is_taxonomy'] ) {
          global $post;
          $attribute_names = $attribute;

          foreach ( $attribute_names as $attribute_name ) {
            $taxonomy = get_taxonomy( $attribute_name );

              if ( $taxonomy && ! is_wp_error( $taxonomy ) ) {
                  $terms = wp_get_post_terms( $post->ID, $attribute_name );

                  $terms_array = array();
                  $attrID = $attribute['name'];
                  $paPMat = 'pa_product-material';
                  $paPColor = 'pa_product-color';

                  // При добавлении новых атрибутов для товаров добавить новый массив с названием атрибута и слагом с приставкой "pa_"
                  $pAttributes_array = array(
                      array(
                          'label' => 'Материал фасадов',
                          'slug' => 'pa_product-material',
                      ),
                      array(
                          'label' => 'Цвет',
                          'slug' => 'pa_product-color',
                      ),
                      array(
                          'label' => 'Конфигурация',
                          'slug' => 'pa_konfiguraciya',
                      ),
                      array(
                          'label' => 'Материал корпуса',
                          'slug' => 'pa_material-kuxni',
                      ),
                      array(
                          'label' => 'Форма',
                          'slug' => 'pa_forma',
                      ),
                      array(
                          'label' => 'Тип дверей',
                          'slug' => 'pa_tip-dverej',
                      ),
                      array(
                          'label' => 'Створки',
                          'slug' => 'pa_stvorki',
                      ),
                array(
                          'label' => 'Размеры',
                          'slug' => 'pa_razmery',
                      ),

                  );

                  foreach ($pAttributes_array as $key => $value) {
                      if ( ! empty( $terms ) && $attrID ===  $value['slug'] ) {
                        foreach ( $terms as $term ) {
                             $archive_link = get_term_link( $term->slug, $attribute_name );
                             $full_line = '<a href="' . $archive_link . '">'. $term->name . '</a>';
                             array_Push( $terms_array, $full_line );
                        }
                        echo '<p class="pa-string">'. $value['label'] .': '. implode( $terms_array, ',  ' ) . '</p>';
                      }
                  }
              }
          }                                                 
      } else {
          $values = array_map( 'trim', explode( '|', $attribute['value'] ) );
          echo apply_filters( 'woocommerce_attribute', wpautop( wptexturize( implode( ', ', $values ) ) ), $attribute, $values );
      }
?>
<?php endforeach; ?>
_
7

更新:テスト用にコードを圧縮:

_$attributes = $product->get_attributes();
foreach ( $attributes as $attribute ):
    $attribute_names = $attribute;
    // testing output
    var_dump($attribute_name);
endforeach;
_

var_dump($attribute_name);のraw出力は、オブジェクト _WC_Product_Attribute_ であるオブジェクトについての指示を提供します。つまり、 this class で使用可能なメソッドを使用する必要があることを意味します=。

そこでIS 2通り:

1) get_data() メソッドを次のように使用して、保護されていない配列のプロパティにアクセスできます。

_$attributes = $product->get_attributes();
foreach ( $attributes as $attribute ):
    $attribute_data = $attribute->get_data();
    // testing pre-formatted output
    echo '<pre>'; print_r($attribute_data); echo '</pre>'; 
    // We stop the loop to get the first object only (for testing)
    break; 
endforeach;
_

それはあなたに次のような生の出力を与えます:

_Array (
    [id] => 1
    [name] => pa_color
    [options] => Array (
        [0] => 8
        [1] => 9
    )
    [position] => 0
    [visible] => 
    [variation] => 1
    [is_visible] => 0
    [is_variation] => 1
    [is_taxonomy] => 1
    [value] => 
)
_

そして、あなたはそれをこのように使うことができます:

_$attributes = $product->get_attributes();
foreach ( $attributes as $attribute ):
    $attribute_data = $attribute->get_data(); // Get the data in an array

    $attribute_name = $attribute_data['name']; // The taxonomy slug name
    $attribute_terms = $attribute_data['options']; // The terms Ids
endforeach;
_

2)次のような _WC_Product_Attribute_ メソッドを使用できます。

_$attributes = $product->get_attributes();
foreach ( $attributes as $attribute ):
    $attribute_name = $attribute->get_taxonomy(); // The taxonomy slug name
    $attribute_terms = $attribute->get_terms(); // The terms
    $attribute_slugs = $vaattributeues->get_slugs(); // The term slugs
endforeach;
_
2
LoicTheAztec