Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道如何确定给定的 WC_Product 对象 $product 是否是订阅产品。
您可以使用他们可能是最完整的辅助函数:
if( class_exists( 'WC_Subscriptions_Product' ) && WC_Subscriptions_Product::is_subscription( $product ) ) { return TRUE; } else { return FALSE; }
或者您也可以使用 WooCommerce 的$product->is_type( $type )支票。
$product->is_type( $type )