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 );
add_action( 'wp_footer', 'prefix_wp_underscore_playlist_templates', 0 );
} );
For now I'm just copying the contents of wp_underscore_playlist_templates()
to prefix_wp_underscore_playlist_templates()
.
Inside my custom prefix_wp_underscore_playlist_templates()
function, a data
object is made available but I believe this just contains "data" related to the track such as data.meta.artist
and data.content
.
My question
How can I get the post ID of the track when inside prefix_wp_underscore_playlist_templates()
?