Skip to content

Instantly share code, notes, and snippets.

@mikejolley
Last active February 18, 2016 12:04
Show Gist options
  • Save mikejolley/79f12043c18866f46fc6 to your computer and use it in GitHub Desktop.
Save mikejolley/79f12043c18866f46fc6 to your computer and use it in GitHub Desktop.
Restrict resume file allowed mime types
add_filter( 'submit_resume_form_fields', 'alter_allowed_mime_types' );
function alter_allowed_mime_types( $fields ) {
if ( ! empty( $fields['resume_fields']['resume_file'] ) ) {
$fields['resume_fields']['resume_file']['allowed_file_types'] = array(
'doc' => 'application/msword',
'docx' => 'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
'pdf' => 'application/pdf',
);
}
return $fields;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment