mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://github.com/Charitable/library/blob/master/donation-form/change-state-to-province.php
10 lines
229 B
Text
10 lines
229 B
Text
add_action(
|
|
'init',
|
|
function ( $fields ) {
|
|
$fields = charitable()->donation_fields();
|
|
$field = $fields->get_field( 'state' );
|
|
$field->label = 'Province';
|
|
$field->set( 'donation_form', 'label', 'Province' );
|
|
},
|
|
11
|
|
);
|