2

我想知道如何确定给定的 WC_Product 对象 $product 是否是订阅产品。

4

1 回答 1

20

您可以使用他们可能是最完整的辅助函数:

if( class_exists( 'WC_Subscriptions_Product' ) && WC_Subscriptions_Product::is_subscription( $product ) ) {
    return TRUE;
} else {
    return FALSE;
}

或者您也可以使用 WooCommerce 的$product->is_type( $type )支票。

于 2017-02-01T13:06:52.567 回答