Questions tagged «iframe»

6
使WordPress所见即所得不删除iframe的
我有一个博客,出于各种原因,我经常需要将iframe插入帖子中(不要问为什么只相信我!) 当我使用“可视”视图编辑帖子时,所见即所得不断删除我的iframe ... 我知道如果我使用“ html”视图并且仅从“ html”视图查看/保存,则可以将iframe保留在帖子中...但是,我真的很希望能够使用普通的所见即所得来编辑我的帖子无需诉诸“ html”视图。 我有什么办法可以禁用此行为?我看过这篇文章,建议您进行编辑wp-includes/js/tinymce/tiny_mce_config.php,但我真的想避免做类似的事情,否则可能会破坏升级!
16 wysiwyg  iframe 

1
如何在不剥离iframe代码的情况下获取SimplePie fetch_feed?
我在插件中抓取了一个远程供稿,有些条目包含我要保留的iframe代码。但是,SimplePie fetch_feed一直将其剥离。这是我的代码以及我已经尝试过的内容: kses_remove_filters(); # remove kses filters but SimplePie strips codes anyway $rss = fetch_feed( 'http://www.someblog.com/feed/' ); $rss_items = $rss->get_items( 0, 2 ); # get two entries for this example foreach ( $rss_items as $item ) { # just dump to screen: echo "<div id='message' class='updated'><p>" . $item->get_content() . "</p></div>"; …
10 rss  feed  wp-kses  iframe 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.