Created
April 10, 2015 14:31
-
-
Save bryceadams/4a21d121fd49886582a3 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', 'remove_submit_resume_form_fields' ); | |
function remove_submit_resume_form_fields( $fields ) { | |
// Unset any of the fields you'd like to remove - copy and repeat as needed | |
unset( $fields['resume_fields']['candidate_photo'] ); | |
unset( $fields['resume_fields']['candidate_video'] ); | |
// And return the modified fields | |
return $fields; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment