有没有办法在 Sulu CMS (1.6) 中为 wabspace 创建额外的菜单?我只在选项中看到主菜单:
多谢!
安德烈亚斯
您可以使用网站空间的 XML 定义添加更多导航。来自 sulu-minimal 存储库的默认 webspace 位于app/Resources/webspaces/example.com.xml
并且已经包含一个navigation
标签。
您可以像这样添加更多上下文:
<webspace>
<!-- other tags -->
<navigation>
<contexts>
<context key="main">
<meta>
<title lang="en">Main Navigation</title>
</meta>
</context>
<context key="footer">
<meta>
<title lang="en">Footer Navigation</title>
</meta>
</context>
</contexts>
</navigation>
<!-- other tags -->
</webspace>