1

有没有办法阻止最新的 WordPress 3.7.1 清理从“文本选项卡”添加的嵌入代码?

我有以下嵌入代码和类似的代码,需要用户在帖子编辑器中添加:

<iframe class="vine-embed" src="https://vine.co/v/bjHh0zHdgZT/embed/simple" width="600" height="600" frameborder="0"></iframe><script async src="//platform.vine.co/static/scripts/embed.js" charset="utf-8"></script>

他们从这样的页面中得到:

https://vine.co/v/bjHh0zHdgZT/embed

这工作得很好,但是在升级到 WordPress 3.7.1 之后,就在用户将 Vine 嵌入代码粘贴到“文本选项卡”之后,通过切换到“可视化编辑器选项卡”,class="vine-embed" 被删除了!

我怎样才能防止这种情况发生?

我尝试了像 raw html 插件这样的插件,但是没有用。

4

1 回答 1

0

WordPress 编辑器很痛苦......我会用简码解决这个问题:

[vineframe url="https://vine.co/v/bjHh0zHdgZT/embed/simple"]
<?php
/* Plugin Name: Vine iFrame */

add_shortcode( 'vineframe', 'shortcode_so_19697294' );

function shortcode_so_19697294( $atts, $content )
{
    return sprintf(
        '<iframe class="vine-embed" src="%s" width="600" height="600" frameborder="0"></iframe><script async src="//platform.vine.co/static/scripts/embed.js" charset="utf-8"></script>',
        $atts['url']
    );
}
于 2013-10-31T14:46:54.803 回答