创建 Drupal 自定义菜单并在模板页面中检索项目
我想在 Drupal 后端创建一个菜单,一个包含 xxx 项目的自定义菜单。
如何使用 Drupal API 在 template.tpl.php 中检索它并显示项目?
I would like to create a menu in Drupal backend, a custom menu which have xxx items.
How can I use the Drupal API to retrieve it in a template.tpl.php, and display items?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
看看 drupal.org 上的这个页面:菜单主题
-J
have a look at this page at drupal.org: Menu theming
-J
我使用 创建了一个自定义菜单这个方法以及一些相关的方法。您将需要为您的菜单生成一个自定义模块。您不会在 template.tpl.php 中检索它,而是作为一个块(通过创建自定义模块)检索它。我建议你先从那里开始。
I created a custom menu using this method as well as some related ones. You will need to generate a custom module for your menu. You won't retrieve it in template.tpl.php but rather as a block (by creating a custom module). I would suggest you start there first.
我会执行以下操作:
也许是这样应该为你工作。
I would do the following:
Maybe this should work for you.