Skip to content

Instantly share code, notes, and snippets.

@bryceadams
Created February 8, 2015 05:48
Show Gist options
  • Save bryceadams/39d44ca867b11a9991cb to your computer and use it in GitHub Desktop.
Save bryceadams/39d44ca867b11a9991cb to your computer and use it in GitHub Desktop.
add_filter( 'submit_resume_form_fields', 'remove_submit_resume_form_fields' );
function remove_submit_resume_form_fields( $fields ) {
// Remove full name field
unset( $fields['resume_fields']['candidate_name'] );
// 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