WooCommerce会员资格 - 列出产品限制

时间:2017-01-04 18:49:31

标签: wordpress woocommerce

我需要一个链接到产品的所有会员计划的数组,限制其内容。我只能查找列出所有计划或用户当前计划的功能,或根据给定计划检查用户,但无法检查用户是否可以动态访问特定产品的内容。

The below screenshot shows the information I'm trying to retrieve.

1 个答案:

答案 0 :(得分:0)

以下似乎工作正常。



if ( wc_memberships_is_product_purchasing_restricted() ) {

  $has_access = current_user_can( 'wc_memberships_purchase_restricted_product', $productID );

  if ( $has_access ) {
    return true;
  } else {
    return false;
  }

}