ID, 'link', true );
if ( isset( $custom) )
$link = $custom;
$count = 0;
echo '
';
echo '' . _e( 'Select an audio file from the above list to attach to this post', $domain ) . '
';
echo 'Files: '.$count.'
';
}
/**
* Saves mp3 file selected from the audio meta box drop down list.
*
* @since 0.1.0
*/
function bloggito_meta_box_post_save_audio( $post_id ) {
if ( isset( $_POST['link'] ) ) {
update_post_meta( $post_id, 'link', esc_url_raw( $_POST['link'] ) );
}
}
?>