

With the following TypoScript Snippet you can show menu items for example in the order they were created, not the order they have in the backend. This snippet shows the newest page first.
lib.mymenu=HMENU lib.mymenu.alternativeSortingField=crdate DESC lib.mymenu.1=TMENU lib.mymenu.1.wrap=<ul>|</ul> lib.mymenu.1.NO.allWrap=<li>|</li>
With alternativeSortingField can you tell which field will be used for the menu sorting.
TSREF




the alternativeSortingField libe belongs into the TMENU section:
lib.mymenu=HMENU
lib.mymenu.1=TMENU
lib.mymenu.1.alternativeSortingField=crdate DESC
lib.mymenu.1.wrap=<ul>|</ul>
lib.mymenu.1.NO.allWrap=<li>|</li>
Add comment