Skip to content

Instantly share code, notes, and snippets.

@tarikcayir
Forked from mustafauysal/upload_mime.php
Created July 24, 2013 12:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tarikcayir/6070190 to your computer and use it in GitHub Desktop.
Save tarikcayir/6070190 to your computer and use it in GitHub Desktop.
<?php
add_filter('upload_mimes','external_mimes');
function external_mimes($mimes){
return array_merge($mimes,array (
'rar'=> 'application/x-rar-compressed', // you can add more?
));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment