/ Published in: PHP
Expand |
Embed | Plain Text
function get_attached_audio($number=NULL){ if($number == NULL ) $number = -1; global $post; 'post_type' => 'attachment', 'numberposts' => $number, 'post_status' => null, 'post_parent' => $post->ID, 'orderby' => 'menu_order' ); if ($attachments) { foreach ($attachments as $attachment) { if( $attachment->post_mime_type == "audio/mpeg"){ $audio = wp_get_attachment_url($attachment->ID,'full',false); } } } return $audios; }
You need to login to post a comment.
