我试着让typo3为我生成一个菜单,但它不起作用。
这是我的TypoScript:
# Menu
temp.menu = HMENU
temp.menu {
entryLevel = 1
1 = TMENU
1 {
wrap = <ul>|</ul>
NO = 1
NO.wrapItemAndSub = <li>|</li>
ACT < .NO
ACT.wrapItemAndSub = <li class="current_page_item"><b>|</b></li>
}
}
here是我的DocumentTree的截图。
答案 0 :(得分:0)
将entryLevel
设为0
。 EntryLevel 1仅包含禁用的页面。
答案 1 :(得分:0)
entryLevel :定义菜单应该从rootLine中的哪个级别开始。 默认为“0”,它为我们提供了网站上最初页面的菜单。 参考: https://docs.typo3.org/typo3cms/TyposcriptReference/ContentObjects/Hmenu/Index.html