woocommerce改变栏位名称
点击数: 1776
文章目录
我们今天想把地址的栏位名称,改为更具体的名字:详细收件地址,一样找到 woocommerce_billing_fields,指定栏位名billing_address_1,把它的属性 label 改为「行动电话」,记得因为名称是字串的形式,一定要加引号,而必填属性为布林值,所以 true 或 false 不用加引号
改变栏位名称
- /**改变栏位名称**/
- add_filter( 'woocommerce_billing_fields', 'custom_billing_phone_label' );
- function custom_billing_phone_label($fields) {
- $fields['billing_address_1'] = array(
- 'label'=>"详细收件地址"
- );
- return $fields;
- }