无法将.mp3文件上载到WordPress媒体 时间:2018-10-24 作者:minhbh 我试图上传一个。mp3文件和wordpress被拒绝并显示消息:抱歉,出于安全原因,不允许使用此文件类型。这发生在一些人身上。仅mp3文件。我正在使用wordpress 4.9.6 1 个回复 SO网友:André Kelling 你need to allow them 将上载到媒体文件中。您可以将以下代码添加到主题函数中。phpfunction my_mime_types($mime_types){ $mime_types[\'mp3\'] = \'audio/mpeg\'; return $mime_types; } add_filter(\'upload_mimes\', \'my_mime_types\', 1, 1); 有更多关于adding new mime types in WP 此处:https://wpsmackdown.com/add-remove-filetypes-wordpress-media-library/#add-filetypes下面是mime_types: https://feedforall.com/mime-types.htm 结束 文章导航