Customize your theme in the Theme Customizer panel. See changes live without page reloading.   

让WordPress支持对其他文件格式的支持例如SVG上传

当前位置:
估计的阅读时间: < 1分钟

由于在上传一些文件时,WordPress会提示wordpress 抱歉,由于安全原因,这个文件类型不受支持。
解决方法将如下代码添加到主题的function.php文件中:

function cc_mime_types($mimes) {
  $mimes['svg'] = 'image/svg+xml';
  return $mimes;
}
add_filter('upload_mimes', 'cc_mime_types');
这篇文章有帮助吗?
浏览: 0
Call to action title here