Last active
August 29, 2015 14:15
-
-
Save bryceadams/b74e6b4254c2400960fd 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', 'edit_submit_resume_edu_qual_field' ); | |
function edit_submit_resume_edu_qual_field( $fields ) { | |
$fields['resume_fields']['candidate_education']['fields']['qualification']['label'] = "Degree(s)"; | |
return $fields; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment