确保你有
global $product;
在此代码之前。
<?php
global $product;
if( $product->is_type( 'simple' ) ){ ?>
<p>single</p>
<?php } elseif( $product->is_type( 'variable' ) ){ ?>
<p>variable</p>
<?php } ?>
</div>
下面是另一种方法。
$product_id = 12; // the ID of the product to check
$_product = wc_get_product( $product_id );
if( $_product->is_type( 'simple' ) ) {
// do stuff for simple products
} else {
// do stuff for everything else
}