Site Overlay

Worepress中添加swf文件并执行

在媒体库中无法直接上传swf文件,会报出 “抱歉,出于安全的考虑,不支持此文件类型” 的提醒,解决方法:在根目录文件中wp-includes文件夹下的functions.php中 搜索

unset( $t['swf'], $t['exe'] );

将其修改为

unset($t['exe'] );

保存后覆盖源文件,重新测试上传swf文件,发现已经可以正常上传,问题解决。

将媒体库中的swf文件地址填入下面代码中swf地址,其中区块以html方式编辑预览即可得到效果展示。


<embed type="application/x-shockwave-flash"
 width="宽" height="高" src="swf文件地址" quality="high">
</embed>

如果添加的swf文件想要允许全屏化,可以在<embed>标签中加入下面两个属性就可以全屏化。


allowfullscreen="true"   
allowfullscreeninteractive="true" 

添加后就可以直接全屏

<embed type="application/x-shockwave-flash" allowfullscreen="true" 
allowfullscreeninteractive="true" width="宽" height="高" 
src="swf文件地址" quality="high"></embed>

1 thought on “Worepress中添加swf文件并执行

  1. 后来发觉直接放把文件放服务器上,感觉有点不妥,之后都是用的别人的文件资源链接然后写个embed标签包起来就好了。。。

发表回复

您的电子邮箱地址不会被公开。

A beliving heart is your magic My heart
欢迎来到Diuut的个人博客,这里是我的一些零零碎碎的知识汇总,希望有能帮到你的内容。 | 蜀ICP备2021011635号-1 | Copyright © 2024 Diuut. All Rights Reserved.