wc_do_oembeds()WC 3.1.0

Process oEmbeds.

No Hooks.

Return

String.

Usage

wc_do_oembeds( $content );
$content(string) (required)
Content.

Changelog

Since 3.1.0 Introduced.

wc_do_oembeds() code WC 8.7.0

function wc_do_oembeds( $content ) {
	global $wp_embed;

	$content = $wp_embed->autoembed( $content ?? '' );

	return $content;
}