1. Home
  2. Knowledge Base
  3. WordPress
  4. Upload vCard to WordPress

Upload vCard to WordPress

In WordPress the upload will be yoursvCard blocked as *.vcf file. Use this code to allow the upload:

/**
 * Enable vCard Upload 
 *
 */
function be_enable_vcard_upload( $mime_types ){
  $mime_types['vcf'] = 'text/vcard';
  return $mime_types;
}
add_filter('upload_mimes', 'be_enable_vcard_upload' );

The code must be included in the functions.php. If you need help with that, we’re here to help!

Dieser Beitrag ist auch verfügbar auf: Deutsch (German)

Was this article helpful?

Related Articles

Submit a Comment

Your email address will not be published. Required fields are marked *

Published on - 26. Feb 2023
Modified on - 27. Mar 2024
Views - 206
Likes - 0

Do you need help?

Kontaktiere uns gerne :-)
Contact Support
Skip to content