Sulu:如何为网站空间添加额外的菜单?

Sulu: How to add an additional menu for a webspace?

有没有办法在 Sulu CMS (1.6) 中为 wabspace 创建额外的菜单?我在选项里只看到主手册:

非常感谢!
安德烈亚斯

您可以使用网站空间的 XML 定义添加更多导航。 sulu-minimal 存储库中的默认网站空间位于 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>