如何在 TyPO3 的侧边栏上添加导航菜单
How do I add navigation menu on sidebar in TyPO3
我想在某些选定页面的侧边栏上添加子菜单。思路是这样的:
http://venicexplorer.com/explore-venice/annual-events/carnival-of-venice.html
我怎样才能在 TYPO3 上做到这一点?
谢谢
普拉逊
构建菜单有两种方式。
1) 传统的方式是使用typoscript 和HMENU。在这里您可以找到文档:
https://docs.typo3.org/m/typo3/reference-typoscript/master/en-us/ContentObjects/Hmenu/Index.html
2) 替代方法是使用 MenuProcessors。在这里您可以找到文档:
https://docs.typo3.org/m/typo3/tutorial-sitepackage/master/en-us/MainMenuCreation/Index.html
要仅显示特殊页面的子页面,您可以在集成菜单的流体模板中使用条件:
[PIDupinRootline = uid]
... here is your menu ...
[end]
uid 属于您要从中显示子页面的页面。
我想在某些选定页面的侧边栏上添加子菜单。思路是这样的:
http://venicexplorer.com/explore-venice/annual-events/carnival-of-venice.html
我怎样才能在 TYPO3 上做到这一点?
谢谢 普拉逊
构建菜单有两种方式。
1) 传统的方式是使用typoscript 和HMENU。在这里您可以找到文档:
https://docs.typo3.org/m/typo3/reference-typoscript/master/en-us/ContentObjects/Hmenu/Index.html
2) 替代方法是使用 MenuProcessors。在这里您可以找到文档:
https://docs.typo3.org/m/typo3/tutorial-sitepackage/master/en-us/MainMenuCreation/Index.html
要仅显示特殊页面的子页面,您可以在集成菜单的流体模板中使用条件:
[PIDupinRootline = uid]
... here is your menu ...
[end]
uid 属于您要从中显示子页面的页面。