如何使用TYPO3多功能新闻系统显示按年份分组的新闻文章

时间:2014-10-15 13:25:38

标签: templates typo3 fluid

我试图显示按年份分组的LIST-Modul的新闻文章列表。年份本身应显示为每组文章的标题。像

2014
--------
article 1
article 2
article 3
--------
2013
--------
article 4
article 5
...

我尝试使用扩展程序的标准list.html模板中的f:groupedFor viewhelper来实现它。在pagedNews部分内部。但TYPO3引发了异常:http://wiki.typo3.org/Exception/CMS/1237900529

我还尝试了这里提到的viewhelper:https://gist.github.com/daKmoR/1287203并在此处阅读问题Display list of elements grouped by year and by month in TYPO3 Fluid

两个接缝都无法在news模板

中使用

1 个答案:

答案 0 :(得分:0)

我终于让viewhelper工作了。

以下是基于https://gist.github.com/daKmoR/1287203

的小扩展程序

https://github.com/unconnect/news_grouped_by_date

有了这个,我能够按年分组新闻。