wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



_oembed_filter_feed_content › WordPress Function

Seit4.4.0
Veraltetn/v
_oembed_filter_feed_content ( $content )
Zugriff:
  • private
Parameter:
  • (string) $content The content to filter.
    Erforderlich: Ja
Gibt zurück:
  • (string) The filtered content.
Definiert in:
Codex:

Prepare the oembed HTML to be displayed in an RSS feed.



Quellcode

function _oembed_filter_feed_content( $content ) {
	$p = new WP_HTML_Tag_Processor( $content );
	while ( $p->next_tag( array( 'tag_name' => 'iframe' ) ) ) {
		if ( $p->has_class( 'wp-embedded-content' ) ) {
			$p->remove_attribute( 'style' );
		}
	}
	return $p->get_updated_html();
}