ZenphotoCMS Forum
reversing order of printAllDates - Printable Version

+- ZenphotoCMS Forum (https://forum.zenphoto.org)
+-- Forum: Support (https://forum.zenphoto.org/forum-1.html)
+--- Forum: General support (https://forum.zenphoto.org/forum-4.html)
+--- Thread: reversing order of printAllDates (/thread-2886.html)



reversing order of printAllDates - gjr - 2008-05-16

Heya all,
Any tips on reversing the order of the printed out dates using the printAllDates template function. Currently it is ordered oldest to newest, but I would like it ordered with the most recent on top. Sorry - I am not a coder - any tips appreciated!




reversing order of printAllDates - sbillard - 2008-05-16

In the function getAllDates() in template-functions.php there is a line that reads ksort($datecount); Change "ksort" to "krsort". Be aware that you will have to make this change each time you update to a new version of zenphoto.




reversing order of printAllDates - gjr - 2008-05-17

perfect - thanks sbillard!!