答案 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;
}
}