Skip to content

Instantly share code, notes, and snippets.

@codebygina
Created June 1, 2020 16:45
Show Gist options
  • Select an option

  • Save codebygina/708aadebbb18fe8abd3c71cf09b0a464 to your computer and use it in GitHub Desktop.

Select an option

Save codebygina/708aadebbb18fe8abd3c71cf09b0a464 to your computer and use it in GitHub Desktop.
Get Media Embedded in Content WordPress
<?php $audio_media = get_media_embedded_in_content(
apply_filters( 'the_content', get_the_content() ), array( 'audio')
);
if ( has_post_format( 'audio' )) {
foreach ($audio_media as $audio_med) {
echo $audio_med;
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment