Woocommerce获得航运国家的价值并保存

时间:2018-06-10 14:49:46

标签: php woocommerce hook-woocommerce

我在编辑帐户表单中添加了一个函数,该函数传递给编辑帐户一些发货字段。

我通过shipping_country但它并没有以后端的形式保存它。

这是代码:

<?php
  global $woocommerce;
  woocommerce_form_field( 'billing_country', array( 'type' => 'country', 'class' => 'input-text', 'label' => 'Country' ) );
?>

在另一项功能中,我保存了帐户数据:

if ( isset( $_POST['shipping_country'] ) ) {


  update_user_meta( $customer_id, 'shipping_country', sanitize_text_field( $_POST['shipping_country'] ) );

}

我该如何检索?

0 个答案:

没有答案