klepto, if you want it to display song info despite a blank album field, just change the album, just change the line:
if ($artist != “” && $album != “” && $track != “”) {
to:
if ($artist != “” && $track != “”) {
olivejuice, if you’re having problems duplicating the “recently played” page, you can check out the exact code I use by going here:
https://www.guboogi.com/blog/wp-content/plugins/wp-itunes.phps (note, this is WP-iTunes 1.0)
It’s probably easiest if you don’t rename any of the functions, but if you have to, all I did was create a duplicate function of get_wp_itunes and renamed it to something else (in my case, get_wp_itunes_archive) and then in my playlist page I just call get_wp_itunes_archive(). Then you just have to change the output for get_wp_itunes_archive to whatever you want and you should be all set. Let me know if you have any specific questions.