Code-Snippets-Functions/Execute a function on a child site/Charitable/change-state-to-province.txt

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
);