woocommerce改变栏位名称

woocommerce改变栏位名称

文章目录

  1. 改变栏位名称

我们今天想把地址的栏位名称,改为更具体的名字:详细收件地址,一样找到 woocommerce_billing_fields,指定栏位名billing_address_1,把它的属性 label 改为「行动电话」,记得因为名称是字串的形式,一定要加引号,而必填属性为布林值,所以 true 或 false 不用加引号

改变栏位名称


  1. /**改变栏位名称**/  
  2.   
  3. add_filter( 'woocommerce_billing_fields', 'custom_billing_phone_label' );   
  4. function custom_billing_phone_label($fields) {   
  5. $fields['billing_address_1'] = array(   
  6. 'label'=>"详细收件地址"  
  7. );   
  8. return $fields;   
  9. }  

评论 (0)

此处尚未发表评论

留言

  1. 以游客身份发表评论。注册登入到您的帐户。
附件 (0/ 3)
分享您的位置