How to make WordPress audio playlist understand the direct links of audio files shared on google drive?

this is my first post here and I excited! I used this approach to make a playlist with external links of audio files I have in my drive but unfortunately It couldn’t recognize the google drive direct link as a audio type file. Would you please guide me how I can solve this issue!? Thank … Read more

How to get the ID of an item in an audio playlist?

I’m using wp_playlist_shortcode() to output an audio playlist. For example: echo wp_playlist_shortcode( array( ‘ids’ => $track_ids ) ); Thanks to the idea in answer 142974, I’m unhooking the wp_underscore_playlist_templates() function and using my own version prefix_wp_underscore_playlist_templates() so I can customise the output of playlist items. For example: add_action( ‘wp_playlist_scripts’, function() { remove_action( ‘wp_footer’, ‘wp_underscore_playlist_templates’, 0 … Read more

Playlist shortcode, prevent repeat

I’m using the WordPress playlist shortcode to present a few audio samples on a given page. For example: The shortcode, by default loops the playlist. The documentation on the codex doesn’t show an option to disable autorepeat/looping of the playlist via a parameter. I need to disable the looping of the playlist; that is play … Read more