mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
6 lines
228 B
Text
6 lines
228 B
Text
add_filter( 'woocommerce_checkout_fields', 'wc_checkout_fields_custom_attributes', 9999 );
|
|
|
|
function wc_checkout_fields_custom_attributes( $fields ) {
|
|
$fields['billing']['billing_company']['maxlength'] = 15;
|
|
return $fields;
|
|
}
|