1

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

苏禄菜单选择

多谢!
安德烈亚斯

4

1 回答 1

1

您可以使用网站空间的 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>
于 2018-10-30T07:56:50.010 回答