Skip to content

Instantly share code, notes, and snippets.

@bi0xid
Last active December 26, 2015 18:29
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 bi0xid/7195022 to your computer and use it in GitHub Desktop.
Save bi0xid/7195022 to your computer and use it in GitHub Desktop.
Add mime type MP3
<?php
add_filter('upload_mimes','add_custom_mime_types');
function add_custom_mime_types($mimes){
return array_merge($mimes,array (
'mp3' => 'audio/mp3'
));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment