Get the Playlist embedded in Post/Page content
I often use get_media_embedded_in_content to get the audio or video embedded inside post or page content. But it doesn't seem to work with playlist. I have tried this code
$main_content = apply_filters( 'the_content', get_the_content() );
$media = get_media_embedded_in_content( $main_content, array(
'audio',
'video',
'playlist',
) );
And nothing inside the audio tag:
string 'audio controls="controls" preload="none" width="618"/audio'
Is it possible to do that? Thanks for all your helps!