需要将mht文件格式上传到wordpress网站

时间:2013-08-05 07:49:24

标签: php wordpress http mhtml

我有一些'.mht'文件。我需要将该文件上传到我的word press网站。但是当我上传那些文件时,它显示“HTTP ERROR”错误。

还有其他方法可以将'.mht'文件上传到word新闻网站。

2 个答案:

答案 0 :(得分:0)

在你的function.php

中添加它
function custom_upload_mimes ( $existing_mimes=array() ) {

    $existing_mimes['mht'] = 'multipart/related';

    return $existing_mimes;

}
add_filter('upload_mimes', 'custom_upload_mimes');

答案 1 :(得分:0)

您可以使用以下代码将其他文件类型上传到您的WordPress博客。

 <?php
 add_filter('upload_mimes', 'custom_upload_mimes');
 function custom_upload_mimes ( $existing_mimes = array() ) {
 // add your extension to the array
 $existing_mimes['ppt'] = 'application/vnd.ms-powerpoint';
 // or: $existing_mimes['ppt|pot|pps'] = 'application/vnd.ms-powerpoint';
 // to add multiple extensions for the same mime type
 // add as many as you like
 // removing existing file types
 unset( $existing_mimes['exe'] );
 // add as many as you like
 // and return the new full result
 return $existing_mimes;
 }
 ?>

因此,您可以使用上面的代码以这种方式添加文件格式 有关此问题的详细信息,请访问此link ..
支持单词印刷的默认文件格式为here ..