Skip to content

Instantly share code, notes, and snippets.

@imarkdesigns
Created October 1, 2020 20:55
Show Gist options
  • Select an option

  • Save imarkdesigns/b67a48aa9a043fbc7f6fadd980fe2975 to your computer and use it in GitHub Desktop.

Select an option

Save imarkdesigns/b67a48aa9a043fbc7f6fadd980fe2975 to your computer and use it in GitHub Desktop.
Allow .vcf to WordPress #wordpress
/**
* 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