我想这可能就是你想要的。下面是一些更改WordPress允许的默认文件类型的示例。请记住,一些托管公司将不允许某些文件类型。
Allow All File Types
将以下内容添加到wp config。php允许任何文件类型。
define( \'ALLOW_UNFILTERED_UPLOADS\', true );
<小时>
Allow or Disable Specific Types
将以下代码添加到主题函数中。php
function my_custom_mime_types( $mimes ) {
// New allowed mime types.
$mimes[\'svg\'] = \'image/svg+xml\';
$mimes[\'svgz\'] = \'image/svg+xml\';
$mimes[\'doc\'] = \'application/msword\';
// Optional. Remove a mime type.
unset( $mimes[\'exe\'] );
return $mimes;
}
add_filter( \'upload_mimes\', \'my_custom_mime_types\' );
<小时>
Resources
Allowed mime Types
List of mime Types
<人力资源>
Plugins
WP Add Mime Types
Disable Mime Check