Skip to content

Instantly share code, notes, and snippets.

@emarket-design
Created September 2, 2016 02:23
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 emarket-design/c38317ca9568586ebd26862dfb8b26a7 to your computer and use it in GitHub Desktop.
Save emarket-design/c38317ca9568586ebd26862dfb8b26a7 to your computer and use it in GitHub Desktop.
Using upload_mimes filter to upload files with non standard extensions.
add_filter('upload_mimes', 'my_upload_types');
function my_upload_types($existing_mimes=array()){
$existing_mimes['wpas'] = 'wpas';
return $existing_mimes;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment