gpt4 book ai didi

wordpress - WooCommerce:获取和设置送货和账单地址的邮政编码

转载 作者:行者123 更新时间:2023-12-04 01:39:53 26 4
gpt4 key购买 nike

如何在 woocommerce 中设置/获取邮政编码(邮政编码)?有这个功能吗?

即,我可以通过任何功能设置邮政编码吗?

我还想知道,如果用户没有登录,如何用我的数据(比如 546621)填充这个字段?

最佳答案

您可以执行以下操作来获取/设置帐单/送货邮政编码,

设置为 值,

$customer = new WC_Customer();
$customer->set_postcode('123456'); //for setting billing postcode
$customer->set_shipping_postcode('123456'); //for setting shipping postcode

如果您只想 获取 邮政编码,您可以从用户元表本身获取它,
$shipping_postcode = get_user_meta( $current_user->ID, 'shipping_postcode', true );
$billing_postcode = get_user_meta( $current_user->ID, 'billing_postcode', true );

关于wordpress - WooCommerce:获取和设置送货和账单地址的邮政编码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19155682/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com