Skip to content

Instantly share code, notes, and snippets.

@termitkin
Created September 16, 2019 13:21
Show Gist options
  • Save termitkin/32d842a087744a034f72aa2ba16e6df9 to your computer and use it in GitHub Desktop.
Save termitkin/32d842a087744a034f72aa2ba16e6df9 to your computer and use it in GitHub Desktop.
[WordPress] Allow to upload .rar files
function allow_upload_rar ($mime_types = array()) {
$mime_types['rar'] = 'application/x-rar';
return $mime_types;
}
add_filter('upload_mimes', 'allow_upload_rar');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment