code for vcf
Anonymous
plain_text
09/29/2022 6:17 PM
280 B
17
Indexable
function _thz_enable_vcard_upload( $mime_types ){
$mime_types['vcf'] = 'text/vcard';
$mime_types['vcard'] = 'text/vcard';
return $mime_types;
}
add_filter('upload_mimes', '_thz_enable_vcard_upload' );
Editor is loading...