Answer the question
In order to leave comments, you need to log in
How to add rar download support to wordpress?
Hi all!
How can I add support for downloading a rar file here.
function enable_extended_upload ( $mime_types =array() ) {
$mime_types['gz'] = 'application/x-gzip';
$mime_types['zip'] = 'application/zip';
$mime_types['rtf'] = 'application/rtf';
$mime_types['ppt'] = 'application/mspowerpoint';
$mime_types['ps'] = 'application/postscript';
$mime_types['flv'] = 'video/x-flv';
unset( $mime_types['exe'] );
unset( $mime_types['bin'] );
return $mime_types;
}
add_filter('upload_mimes', 'enable_extended_upload');
Answer the question
In order to leave comments, you need to log in
Hello.
Probably like this:
function enable_extended_upload ( $mime_types =array() ) {
$mime_types['gz'] = 'application/x-gzip';
$mime_types['zip'] = 'application/zip';
$mime_types['rar'] = 'application/rar';
$mime_types['rtf'] = 'application/rtf';
$mime_types['ppt'] = 'application/mspowerpoint';
$mime_types['ps'] = 'application/postscript';
$mime_types['flv'] = 'video/x-flv';
unset( $mime_types['exe'] );
unset( $mime_types['bin'] );
return $mime_types;
}
add_filter('upload_mimes', 'enable_extended_upload');
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question