齐博CMS V7:编辑器插入通用代码的方法
我用的是V7 CMS,怎么改百度编辑器的按钮都不会增加。
没法只能找到后台,让他去掉对insertframe的删除。
一、改代码
齐博CMS:解决发表文章里有iframe代码无法显示内容的方法
找到inc/check.postarticle.php文件
查找
$postdb[content] = preg_replace('/java script/i','java script',$postdb[content]);
$postdb[content] = preg_replace('/<iframe ([^<>]+)>/i','<iframe \\1>',$postdb[content]);
删除即可
删除后注意恢复,不然会有案例漏洞。
二、前台引用。
编辑器中,选择源代码,将他复进去即可
<p>
<iframe height="auto" width="100%" src="http://player.youku.com/embed/XMzgwNzE2MjU4NA==" frameborder="0"></iframe>
</p>