Skip to content

Instantly share code, notes, and snippets.

@bryceadams
Created February 26, 2015 13:49
Show Gist options
  • Save bryceadams/7523366937203b478169 to your computer and use it in GitHub Desktop.
Save bryceadams/7523366937203b478169 to your computer and use it in GitHub Desktop.
add_filter( 'submit_resume_form_fields', 'custom_submit_resume_form_fields' );
function custom_submit_resume_form_fields( $fields ) {
$fields['resume_fields']['candidate_education']['required'] = true;
$fields['resume_fields']['candidate_education']['fields']['notes']['label'] = 'Additional Comments';
$fields['resume_fields']['candidate_experience']['fields']['notes']['label'] = 'Achievements';
return $fields;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment