如何将一个shtml文件添加到Wordpress

时间:2015-01-12 20:58:10

标签: wordpress shtml

我试图通过iFrame从其他网站提取数据。另一个网站要求我们使用我们的vantage主题在Wordpress中有一个shtml文件。 Wordpress没有以.shtml结尾的网址如何将此文件添加到wordpress?

1 个答案:

答案 0 :(得分:0)

由于默认情况下WordPress无法识别此文件类型,因此您需要添加它。

将此附加到主题中的functions.php文件中:

function my_theme_custom_upload_mimes( $existing_mimes ) {
// add shtml to the list of mime types
$existing_mimes['shtml'] = 'text/html';

// return the array back to the function with our added mime type
return $existing_mimes;
}
add_filter( 'mime_types', 'my_theme_custom_upload_mimes' );