Skip to content

Instantly share code, notes, and snippets.

@bryceadams
Last active August 29, 2015 14:13
Show Gist options
  • Save bryceadams/c0f537602e99bacfe234 to your computer and use it in GitHub Desktop.
Save bryceadams/c0f537602e99bacfe234 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 ) {
// Unset any of the fields you'd like to remove - copy and repeat as needed
unset( $fields['resume_fields']['candidate_title'] );
// 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