Created
January 23, 2014 22:01
-
-
Save rickalee/8587678 to your computer and use it in GitHub Desktop.
VCF Support with WordPress/Cloud Sites
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Add to .htaccess | |
AddType application/octet-stream vcf | |
## Add to functions.php in active theme | |
add_filter('upload_mimes', 'custom_upload_mimes'); | |
function custom_upload_mimes ( $existing_mimes=array() ) { | |
// add your extension to the array | |
$existing_mimes['vcf'] = 'text/x-vcard'; | |
return $existing_mimes; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment