_oembed_filter_feed_content()WP 4.4.0

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

Internal function — this function is designed to be used by the kernel itself. It is not recommended to use this function in your code.

No Hooks.

Return

String. The filtered content.

Usage

_oembed_filter_feed_content( $content );
$content(string) (required)
The content to filter.

Changelog

Since 4.4.0 Introduced.

_oembed_filter_feed_content() code WP 6.5.2

function _oembed_filter_feed_content( $content ) {
	return str_replace( '<iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted" style="position: absolute; clip: rect(1px, 1px, 1px, 1px);"', '<iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted"', $content );
}