Skip to content

Instantly share code, notes, and snippets.

@mfields
Created August 1, 2012 23:55
Show Gist options
  • Save mfields/3231663 to your computer and use it in GitHub Desktop.
Save mfields/3231663 to your computer and use it in GitHub Desktop.
Get Audio
<?php
$audio = get_children( array(
'post_parent' => get_the_ID(),
'post_type' => 'attachment',
'post_mime_type' => 'audio',
'orderby' => 'menu_order',
'order' => 'ASC'
) );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment