Woocommerce订阅-如何在woocommerce中获得订阅产品的试用期

时间:2018-09-28 12:36:11

标签: wordpress woocommerce

我正在遍历由于[products]短码而出现的所有订阅产品,并且如果订阅产品的试用期为n天,我想执行一个任务。我如何获得此信息?

1 个答案:

答案 0 :(得分:1)

尝试这个。

if ( class_exists( 'WC_Subscriptions_Product' ) && 
    WC_Subscriptions_Product::get_trial_length( $product_id ) > 0 ) {
    //do a thing here
}

参考: WC_Subscriptions_Product