Description
If you want to change audio player style, you can use this hook.
Parameters
Two parameters are passed to this hook.
Usage
To change audio player html style.
<?php add_filter('wpdm_audio_playlist','my_player_html',10,2); ?>
Examples
<?php
add_filter('wpdm_audio_playlist','my_player_html',10,2);
function my_player_html($audio_html, $package){
//changer $audio_html here
return $audio_html;
}
?>