如何在不剥离iframe代码的情况下获取SimplePie fetch_feed?


10

我在插件中抓取了一个远程供稿,有些条目包含我要保留的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>";
}
kses_init_filters(); # remove kses filters but SimplePie strips codes anyway


# also tried adding iframe to kses_allowed_html filter:
function se87359_add_filter( &$feed, $url ) {
    add_filter('wp_kses_allowed_html', 'se87359_add_allowed_tags');
}
add_filter( 'wp_feed_options', 'se87359_add_filter', 10, 2 );
function se87359_add_allowed_tags($tags) {
    // Ensure we remove it so it doesn't run on anything else
    remove_filter('wp_kses_allowed_html', 'se87359_add_allowed_tags');
    $tags['iframe'] = array(
    'src' => true,
    'width' => true,
    'height' => true,
    'class' => true,
    'frameborder' => true,
    'webkitAllowFullScreen' => true,
    'mozallowfullscreen' => true,
    'allowFullScreen' => true
    );
    return $tags;
}

# also made sure not to cache the feed (for testing only):
function do_not_cache_feeds(&$feed) {
    $feed->enable_cache(false);
}
add_action( 'wp_feed_options', 'do_not_cache_feeds' );

# in case above doesn't work, set transient lifetime to 1 second:
add_filter( 'wp_feed_cache_transient_lifetime', create_function( '$a', 'return 1;' ) );

1
如果使示例易于复制,将很有帮助。如果原始供稿是私有的,则不必共享链接,但是您可以简单地抛出示例供稿,演示问题,例如在线上的要点。
2015年

Answers:


1

这里的SimplePie文档中:是strip_htmltagsSimplePie对象中的一个属性,它除其他外具有我们想要保留的iframe标签。

因此,除了wp_kses之外,我们可能还想从上述属性中删除该标记。

例如,$rss = fetch_feed( 'http://www.someblog.com/feed/' );给我们提供了SimplePie对象。

要是我们 var_dump($rss)

甚至可以通过以下方式更好地“漂亮打印”它:

highlight_string("<?php\n\$rss =\n" . var_export($rss, true) . ";\n?>");

我们将看到所有提取的条目和$rss对象的所有属性。在这些中,我们正在寻找一种,我们可以使用以下方法将其隔离:

highlight_string("<?php\n\$rss->strip_htmltags =\n" . var_export($rss->strip_htmltags, true) . ";\n?>");

这将为我们提供如下所示的内容:

<?php
    $rss->strip_htmltags =
      array (
        0 => 'base',
        1 => 'blink',
        2 => 'body',
        3 => 'doctype',
        4 => 'embed',
        5 => 'font',
        6 => 'form',
        7 => 'frame',
        8 => 'frameset',
        9 => 'html',
       10 => 'iframe',
       11 => 'input',
       12 => 'marquee',
       13 => 'meta',
       14 => 'noscript',
       15 => 'object',
       16 => 'param',
       17 => 'script',
       18 => 'style',
     );
?>

从上面我们注意到,keyiframe条目的值为10。因此,我们使用array_splice删除了该条目,例如:

// Remove these tags from the list
$strip_htmltags = $rss->strip_htmltags; //get a copy of the strip entries array
array_splice($strip_htmltags, 10, 1); //remove the iframe entry
$rss->strip_htmltags = $strip_htmltags; // assign the strip entries without those we want

现在,iframe条目已超出$strip_htmltags属性范围,可能已经设置好了。

注意:我找不到包含一些iframe的“测试” rss提要来测试上述内容。因此,如果有人可以验证它,请提供一些反馈。

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.