清除 WooCommerce 中特定用户的结帐字段

Clear checkout fields for specific user(s) in WooCommerce

此代码为所有人清除结帐页面的所有输入。我想清除特定用户的所有输入。我该怎么做。

 add_filter( 'woocommerce_checkout_get_value' , 'clear_checkout_fields' );
function clear_checkout_fields($input)
    {
        return '';
    }

对于定义的用户 ID,您可以使用 (在 IF 语句中设置相关的用户 ID):

add_filter( 'woocommerce_checkout_get_value', 'clear_checkout_fields' );
function clear_checkout_fields( $input ) {
    if ( get_current_user_id() == 259 ) {
        return '';
    }
    return $input;
}

或者对于一组用户 ID:

add_filter( 'woocommerce_checkout_get_value', 'clear_checkout_fields' );
function clear_checkout_fields( $input ) {
    if ( in_array( get_current_user_id(), array( 259, 321, 336 ) ) {
        return '';
    }
    return $input;
}