【问题标题】:WooCommerce Subscriptions - Check if a product is a subscription productWooCommerce 订阅 - 检查产品是否为订阅产品
【发布时间】:2017-06-18 04:55:24
【问题描述】:

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

【问题讨论】:

    标签: woocommerce woocommerce-subscriptions


    【解决方案1】:

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

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

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

    【讨论】:

      猜你喜欢
      • 2021-07-01
      • 2016-12-29
      • 2021-01-25
      • 1970-01-01
      • 2017-12-03
      • 2019-07-29
      • 2017-02-16
      • 2023-01-25
      • 2017-03-11
      相关资源
      最近更新 更多