1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
/* techplace code */ $_product = new WC_Product( get_the_ID() ); $product_attributes = $_product->get_attributes(); echo '<table class="woocommerce-product-attributes shop_attributes product-short-attr">'; foreach ( $product_attributes as $product_attribute_key => $product_attribute ) : echo '<tr class="woocommerce-product-attributes-item woocommerce-product-attributes-item--<?php echo esc_attr( $product_attribute_key ); ?>">'; echo "<th class=\"woocommerce-product-attributes-item__label\">" . wp_kses_post( $product_attribute['name'] )."</th>"; echo "<td class=\"woocommerce-product-attributes-item__value\">". wp_kses_post( $product_attribute['value'] ) ."</td>"; echo '</tr>'; endforeach; echo '</table>'; |