I’ve tried a dozen different ways to solve this including editing the functions.php file and I don’t see any plugins that are compatible with my theme to modify allowed file upload types. Does X not support video and audio files upload to the WP media folder?
This is the code I added to the functions.php file and I can now upload mp4 files so I can use mp4 extension on audio files to get them into my media database but those play in a video player which just looks awful. How can I upload just an audio file.
add_filter(‘upload_mimes’, ‘add_custom_upload_mimes’);
function add_custom_upload_mimes($existing_mimes) {
$existing_mimes[‘mp3’] = ‘audio/mp3’;
$existing_mimes[‘mp4’] = ‘video/mp4’;
$existing_mimes[‘mp4a’] = ‘audio/mp4’;
return $existing_mimes;
}