Advertisement
GochiSiyan

mp3 mime

Mar 8th, 2021
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. function mp3_upload_mimes($existing_mimes) {
  2. $existing_mimes['mp3'] = 'audio/mpeg3';
  3. return $existing_mimes;
  4. }
  5. add_filter('mime_types', 'mp3_upload_mimes');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement