如果用户当前正在使用Woocommerce订阅进行试用,如何进行简单检查以返回?
该产品的试用期为7天。如果用户正在试用中,我们希望在仪表板上显示一个部分,否则,则不应显示该部分。只是一个是或否的值。
谢谢。
答案 0 :(得分:0)
//试试这个
$subscription_id = 5422;
$subscription = wcs_get_subscription($subscription_id);
$get_length = $subscription->get_trial_length(); //1 get_post_meta($subscription_id, '_subscription_trial_length', true);
$get_period = $subscription->get_trial_period(); // month get_post_meta($subscription_id, '_subscription_trial_period', true);
if(!empty($get_length) && !empty($get_period )){
// code here
}
//回身时间1个月,7天,1年 //检查