Last active
May 19, 2020 11:45
-
-
Save pbearne/c9cb03c12a3dd58b71d10be16fb3cb1d to your computer and use it in GitHub Desktop.
matador privacy checkbox text
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function matador_privacy_policy_opt_in_label( $fields ) { | |
$fields['privacy_policy_opt_in']['options']['1'] = esc_html( 'By submitting this application, you give us permission to store your personal | |
information, and use it in the consideration of your fitness for the position, | |
including sharing it with the hiring firm.' ); // changes the label | |
return $fields; | |
} | |
add_filter( 'matador_application_fields_structure', 'matador_privacy_policy_opt_in_label' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment