HowdoIchangethearchivedateonthearchivepanel
|
Question
|
How do I change the archive date on the archive panel?
|
|
Answer
|
At present the archive panel prints year & months in "oldest at the top & newest at the bottom" format. To simply reverse the order & make the latest date on the top perform the following steps:
- Search for Blog.ArchivePanel page on your wiki
- Edit the page in inline mode
- Strictly look for this line that says -
#foreach($year in [$firstYear..$lastYear])
- Replace this line with -
#foreach($year in [$lastYear..$firstYear])
|