Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created December 20, 2016 21:23
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/ee531a3850979bec47965be0e695f926 to your computer and use it in GitHub Desktop.
Save billerickson/ee531a3850979bec47965be0e695f926 to your computer and use it in GitHub Desktop.
<?php
/**
* Enable vCard Upload
*
*/
function be_enable_vcard_upload( $mime_types ){
$mime_types['vcf'] = 'text/x-vcard';
return $mime_types;
}
add_filter('upload_mimes', 'be_enable_vcard_upload' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment