web-dev-qa-db-ja.com

WordPress SimplePieの変更

SimplePieフィードオブジェクトを構築するためにWordPressで提供されているfetch_feed()関数を使用しています。

WPのコードは次のとおりです。

function fetch_feed($url) {
require_once (ABSPATH . WPINC . '/class-feed.php');

$feed = new SimplePie();

$feed->set_sanitize_class( 'WP_SimplePie_Sanitize_KSES' );
// We must manually overwrite $feed->sanitize because SimplePie's
// constructor sets it before we have a chance to set the sanitization class
$feed->sanitize = new WP_SimplePie_Sanitize_KSES();

$feed->set_cache_class( 'WP_Feed_Cache' );
$feed->set_file_class( 'WP_SimplePie_File' );

$feed->set_feed_url($url);
$feed->set_cache_duration( apply_filters( 'wp_feed_cache_transient_lifetime', 12 * HOUR_IN_SECONDS, $url ) );
do_action_ref_array( 'wp_feed_options', array( &$feed, $url ) );
$feed->init();
$feed->handle_content_type();

if ( $feed->error() )
    return new WP_Error('simplepie-error', $feed->error());

return $feed;
}

フィードのインポート中にどのHTML要素が削除されるのかを変更する方法を教えてください。

SimplePieのドキュメントには関数strip_htmltags()があると書かれていますが、WordPressのコンテキスト内でどのように使用できるかはわかりません。 http://simplepie.org/wiki/reference/simplepie/strip_htmltags

これが私が試したものですが、うまくいきませんでした。

function wpse87359_feed_options( $feed) {
$feed->strip_htmltags(array_merge($feed->strip_htmltags, array('h1', 'a', 'img','em')));
}
add_action( 'wp_feed_options', 'wpse87359_feed_options' );
3
urok93

WordPressのSimplePieは、SimplePieではなく、組み込みのksesサニタイズを使用します。代わりに、wp_kses_allowed_htmlをフィルタリングしてそこに要素を追加できます。これはSimplePieだけではなく、allのポストシンチゼーションでも発生することに注意してください。

function se87359_add_allowed_tags($tags) {
    $tags['mytag'] = array('myattr' => true);
    return $tags;
}
add_filter('wp_kses_allowed_html', 'se87359_add_allowed_tags');

フィードだけにしたい場合は、次のようにします。

/**
 * Add in our filter when we run fetch_feed()
 */
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['mytag'] = array('myattr' => true);
    return $tags;
}
4
Ryan McCue