Filter Reference

wpdm_audio_playlist

1 min read Updated Jan 26, 2026

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;
}
?>

Related