php 添加SVG支持媒体上传

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 添加SVG支持媒体上传相关的知识,希望对你有一定的参考价值。

https://themeisle.com/blog/add-svg-to-wordpress/

<?php

function add_file_types_to_uploads($file_types){
$new_filetypes = array();
$new_filetypes['svg'] = 'image/svg+xml';
$file_types = array_merge($file_types, $new_filetypes );
return $file_types;
}
add_action('upload_mimes', 'add_file_types_to_uploads');




以上是关于php 添加SVG支持媒体上传的主要内容,如果未能解决你的问题,请参考以下文章