Created
February 26, 2015 13:49
-
-
Save bryceadams/7523366937203b478169 to your computer and use it in GitHub Desktop.
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
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