向 WooCommerce 产品添加购买条件

Add a purchase condition to WooCommerce products

我想通过以下方式向我的 WooCommerce 产品添加购买条件:

{$current_user = wp_get_current_user();

if ( current_user_can('administrator') || wc_customer_bought_product($current_user->email, $current_user->ID,
// return true
return true;}

但我不知道这段代码是否正确,建议会有所帮助。

wc_customer_bought_product() 函数中缺少产品 ID 参数,您可以更轻松地获取 WP_User 对象。这是一个用法示例:

global $current_user;

if ( is_user_logged_in() && wc_customer_bought_product( $current_user->email, $current_user->ID, get_the_id() ) ) {
    // Do something
    echo '<p>' . __("You have already purchased this product before") . '</p>';
}