H
H
Har8iunian2020-08-28 01:08:33
WordPress
Har8iunian, 2020-08-28 01:08:33

How to display attributes on WordPress woocommerce product page?

Hello! I have a WordPress store on a unique template (from scratch). Can you please tell me how can I display all the attributes of a particular product on the product page? Thanks!!!

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Anton Plawkevich, 2020-08-28
@antowa_plawkevich

Like this

<?php foreach ( $product_attributes as $product_attribute_key => $product_attribute ) : ?>
    <tr class="woocommerce-product-attributes-item woocommerce-product-attributes-item--<?php echo esc_attr( $product_attribute_key ); ?>">
      <th class="woocommerce-product-attributes-item__label"><?php echo wp_kses_post( $product_attribute['label'] ); ?></th>
      <td class="woocommerce-product-attributes-item__value"><?php echo wp_kses_post( $product_attribute['value'] ); ?></td>
    </tr>
  <?php endforeach; ?>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question