Answer the question
In order to leave comments, you need to log in
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
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 questionAsk a Question
731 491 924 answers to any question