Skip to content

Instantly share code, notes, and snippets.

@kodie
Created October 1, 2015 20:28
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 kodie/8096f7a32104304312c9 to your computer and use it in GitHub Desktop.
Save kodie/8096f7a32104304312c9 to your computer and use it in GitHub Desktop.
Allow additional file types to be uploaded to Wordpress
<?php
function add_mime_types($mime_types) {
$mime_types['qbb'] = 'application/octet-stream';
return $mime_types;
}
add_filter('upload_mimes', 'add_mime_types', 1, 1);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment