如何让WordPress支持上传更多文件类型

可以在functions.php中这样写:


1

2

3

4

5

6

7

8

9

add_filter(‘upload_mimes‘‘wpdit_filter_mime_types‘);

function wpdit_filter_mime_types($mimes)

{

    $mimes[‘ttf‘] = ‘font/ttf‘;

    $mimes[‘woff‘] = ‘font/woff‘;

    $mimes[‘svg‘] = ‘font/svg‘;

    $mimes[‘eot‘] = ‘font/eot‘;

    return $mimes;

}

时间: 2024-10-05 06:03:51

如何让WordPress支持上传更多文件类型的相关文章

C#实现http协议支持上传下载文件的GET、POST请求

C#实现http协议支持上传下载文件的GET.POST请求using System; using System.Collections.Generic; using System.Text; using System.Net; using System.Net.Sockets; using System.Collections; using System.IO; using System.Text.RegularExpressions; using RE = System.Text.Regula

Struts文件上传allowedTypes问题,烦人的“允许上传的文件类型”

Struts的文件上传问题,相信很多人都会使用allowedTypes参数来配置允许上传的文件类型,如下. [html] view plaincopy <param name="allowedTypes"> image/png,image/bmp,image/jpg </param> 但是,用过这个参数的人都知道,allowedTypes是“文件类型”, 而不是“文件后缀名”,文件类型与文件后缀名有什么区别呢? 就如后缀名为bmp的图片的文件类型为image/b

struts2文件上传,文件类型 allowedTypes

struts2文件上传,文件类型 allowedTypes 1 '.a' : 'application/octet-stream', 2 '.ai' : 'application/postscript', 3 '.aif' : 'audio/x-aiff', 4 '.aifc' : 'audio/x-aiff', 5 '.aiff' : 'audio/x-aiff', 6 '.au' : 'audio/basic', 7 '.avi' : 'video/x-msvideo', 8 '.bat'

图片上传限制文件类型

//上传文件时对文件类型做一个验证 $("#myfile").on("change", function () { var a = document.getElementById("myfile").files[0].type.split("/"); if (a[0] != "image") { alert("必须是图片类型,否则不允许上传!"); window.location.hre

input上传限定文件类型

accept="image/*"   限定为只能上传图片 accept="audio/*   限定为只能上传音频 accept="video/*" 限定为只能上传视频 input[file]标签的accept属性可用于指定上传文件的 MIME类型 . 想要实现默认上传图片文件的代码,代码可如下 1 <input type="file" name="file" class="element"

史上最完全oophper php文件上传之文件类型对应表,ie,火狐各一份。

ie 火狐 id 后缀名 php识别出的文件类型 0 gif image/gif 1 jpg image/jpeg 2 png image/png 3 bmp image/bmp 4 psd application/octet-stream 5 ico image/x-icon 6 rar application/octet-stream 7 zip application/zip 8 7z application/octet-stream 9 exe application/octet-str

文件和打印的技巧-限制多文件上传的文件类型

—————————————————————— <script type="text/javascript">                    function chkform(){                //获取Dom                var mypic = document.forms[0].mypic;                for(var i = 0 ;i<mypic.files.length;i++){           

文件上传判断文件类型,(不用后缀判断)

/// <summary> /// 判断文件格式 /// http://www.cnblogs.com/babycool /// </summary> /// <param name="filePath"></param> /// <returns></returns> public static bool IsAllowedExtension(string filePath) { FileStream strea

轻量级 web 文件上传组件,纯js,html5、html4智能适配,支持上传进度显示(IE10+、标准浏览器)

老早就注册了博客园帐号,昨天才发现,连博客都没开,Github也是一样,深觉惭愧,赶紧潜个水压压惊`(*∩_∩*)′ 言归正传.大概许多人都会用到文件上传的功能,上传的库貌似也不少,比如(jQuery File Uploader.FineUploader.Uploadify.Baidu Web Uploader 等等),功能都很强大,代码量一般也较大.当时心想,就这么个小功能,杀鸡焉用牛刀,用库的话还得熟悉它的用法,有的需要引入额外的库,纯Flash的不考虑,还是动手造个轮子得了,至少造过之后能