Skip to content

Instantly share code, notes, and snippets.

@mrkdevelopment
mrkdevelopment / functions.php
Created July 29, 2022 06:36
Display WooCommerce data for Attributes in the meta area of template
add_action('woocommerce_product_meta_start',function(){
global $product;
echo wc_display_product_attributes( $product );
});