Skip to content

Instantly share code, notes, and snippets.

@amsgator
Created July 9, 2019 20:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amsgator/7afdaff9f9c153f0c81e915d5cd0889a to your computer and use it in GitHub Desktop.
Save amsgator/7afdaff9f9c153f0c81e915d5cd0889a to your computer and use it in GitHub Desktop.
Enable vCard Upload in WordPress
<?php
function enable_vcard_upload( $mime_types ){
$mime_types['vcf'] = 'text/vcard';
$mime_types['vcard'] = 'text/vcard';
return $mime_types;
}
add_filter('upload_mimes', 'enable_vcard_upload' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment