Currently, when I use this:
$loop(%album%) [I am doing this by artist name]
...it returns back the albums listed in alphabetical order. Is there a way to instead return them back listed by date (oldest [1999] to newest [2022])?
TIA
Currently, when I use this:
$loop(%album%) [I am doing this by artist name]
...it returns back the albums listed in alphabetical order. Is there a way to instead return them back listed by date (oldest [1999] to newest [2022])?
TIA
Either replace
with
$loop(%year%)
or add it in front:
$loop(%year%)$loop(%album%)
this sorts first the years and then in that year all the albums alphabetically.
(If you have 1 more $loop(), you also need 1 more $loopend() to close all loops/sorting orders)
Thank you for this ohrenkino!