Skip to content

Instantly share code, notes, and snippets.

@pbearne
Last active May 19, 2020 11:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pbearne/c9cb03c12a3dd58b71d10be16fb3cb1d to your computer and use it in GitHub Desktop.
Save pbearne/c9cb03c12a3dd58b71d10be16fb3cb1d to your computer and use it in GitHub Desktop.
matador privacy checkbox text
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