wc_do_oembeds()
Process oEmbeds.
No Hooks.
Returns
String.
Usage
wc_do_oembeds( $content );
- $content(string) (required)
- Content.
Changelog
| Since 3.1.0 | Introduced. |
wc_do_oembeds() wc do oembeds code WC 10.4.3
function wc_do_oembeds( $content ) {
global $wp_embed;
$content = $wp_embed->autoembed( $content ?? '' );
return $content;
}