页脚中的 Drupal 导航
在许多网站上,您会在页脚的列中看到包含所有链接的导航。但是,当您有许多链接时,您希望某些项目位于同一列中。 (示例:12 个项目,每个项目都有子项目显示在 6 列中)
您可以使用:
<?php print(render(menu_tree_output(menu_tree_all_data('main-menu')))); ?>
但是您会得到嵌套的 UL 元素。
有没有办法获取DIV中的所有链接? (不嵌套)
在 Drupal 中制作的示例: http://www.louvre.fr/
On many sites you see the navigation with ALL links in the footer, in columns. But when you have MANY links you want some items to be in the same columns. (example: 12 items each with sub-items to be shown in 6 columns)
You can use:
<?php print(render(menu_tree_output(menu_tree_all_data('main-menu')))); ?>
But then you get nested UL elements.
Is there a way to get all links in DIV's? (not nested)
Example made in Drupal:
http://www.louvre.fr/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Ul 是由您的主题模板文件生成的。
您可以改为使用视图。我会在视图中生成列表。这允许我将输出格式化为 div 而不是 ul。
然后我会将这个视图做成一个块,然后将其放置在页脚上。
如果不恢复的话希望这会有所帮助。
Ul is being generated by your theme template files.
You can instead use views. I would generate the list in views. This allows me to format the output as div intead of ul.
This view I would then make it a block and then place it on the footer.
Hope this helps if not revert back.
我编写了一些代码来实现我想要的功能。在页脚的列中显示导航(2 级)。如果有人有更好的方法来做到这一点,请告诉我!
I made some code that does what I wanted. Show the navigation (2 levels) in columns in the footer. If anyone has a better way for doing this, let me know!