一些WordPress用户的部分主题在上传svg、ico、webp文件时出现“由于安全原因,这个文件类型不受支持上传”的提示,意思是这类图片格式不允许上传,今天这个教程能解决这个问题。

解决办法分两步:

Step 1:

在网站根目录找到“wp-config.php”文件,添加以下代码:

define('ALLOW_UNFILTERED_UPLOADS', true);

Step 2:

在你主题所在模板文件夹根目录找到 functions.php 文件,添加以下代码:

add_filter( 'mime_types', 'wpse_mime_types' );
function wpse_mime_types( $existing_mimes ) {
    // Add csv to the list of allowed mime types
        $existing_mimes['ico'] = 'text/ico';
        $existing_mimes['webp'] = 'text/webp';
        $existing_mimes['svg'] = 'text/svg+xml';
    return $existing_mimes;
}