I have a music player in my theme that generates its playlist from a javascript file that looks like this
var myPlaylist = [
{
mp3:'track url goes here',
title:'title here',
artist:'artist',
}
{
mp3:'track url goes here',
title:'title here',
artist:'artist',
}
etc...
];
How can I query the media library so it will echo the track url, title text and maybe an existing audio parameter like “description” for the artist value?
I know enough about php to put them in the right places once they’re queried, I just needto know how to pull them from the wp database!
Welcome to WPSE marctain!
Edit
There are some critiques on using the guid but no one of the commentators managed to edit this answer to a better one, so I’ll do it.
Yes, using guid is a bad idea in the long run, I knew that and I should have pointed that out, I didn’t, it was a mistake. I’m sorry, it was a quick and dirty answer.
In my original answer, I would have made usage of wp_get_attachment_url to get the correct url in any case. This adds an extra query, but it is safe to use.
One step further: Use localize to process from php and access in js
Here’s an example that allows you to access & modify your tracklist straight from inside your php files. The additional benefit from this solution is that you can now modify stuff using jQuery.ajax functions 1).
You then can access your result inside your javascript file from
track_list_object.data
. This â also allows you to process stuff via ajax inside the function.Just process your stuff during something like:
Notes
1) You don’t have to do this, but it’s easy and allows you to use ajax in case you want to modify your playlists on the fly.