woocommerce_template_single_meta()
Output the product meta.
No Hooks.
Returns
null. Nothing (null).
Usage
woocommerce_template_single_meta();
woocommerce_template_single_meta() woocommerce template single meta code WC 10.6.2
function woocommerce_template_single_meta() {
if ( ! is_a( $GLOBALS['product'] ?? null, \WC_Product::class ) ) {
return;
}
wc_get_template( 'single-product/meta.php' );
}