Skip to content

Instantly share code, notes, and snippets.

@bishless
Created November 25, 2019 17:25
Show Gist options
  • Save bishless/2a324f90f4ec8729daa3a36435bf6b8b to your computer and use it in GitHub Desktop.
Save bishless/2a324f90f4ec8729daa3a36435bf6b8b to your computer and use it in GitHub Desktop.
<?php
/**
* Add vcard to upload-safe files
*/
add_filter('upload_mimes', 'custom_upload_mimes');
function custom_upload_mimes ( $existing_mimes=array() ) {
$existing_mimes['vcard'] = 'text/vcard';
$existing_mimes['vcf'] = 'text/vcard';
return $existing_mimes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment