Hugh's Blog

WordPress 自定义上传文件类型

很简单!!

在 functions.php 文件中添加如下代码。

/**
 * Add custom file type
 */
add_filter('upload_mimes', 'custom_upload_xml');
 
function custom_upload_xml($mimes = array()) {
    $mimes = array_merge($mimes, array('xml' => 'application/xml'));
    return $mimes;
}

添加上面代码可以将 xml 文件上传到后台中。

更多的文件类型可以到这里查看:MIME Types – Complete List


参考

Plugin API/Filter Reference/upload mimes