请在 Drupal 中显示菜单标题
我在 Drupal 中有一个自定义菜单。以下是我用来在主题 (page.tpl.php) 中显示它的代码:
<h4>Site Information</h4>
<?php print theme("links", menu_navigation_links("menu-teaser-05")); ?>
我希望能够拉出菜单标题,而不是显示站点信息。如果没有自定义 SQL/代码,任何人都可以提供帮助。我正在寻找的值可以在以下位置找到:
Administer -> Site Building -> Menus -> (Select Menu) -> Edit Menu -> Title
I have a custom menu in Drupal. Here is the code I use to display it inside my theme (page.tpl.php):
<h4>Site Information</h4>
<?php print theme("links", menu_navigation_links("menu-teaser-05")); ?>
Rather than display Site Information I would like to be able to pull out the Menu Title. Short of doing custom SQL/code can anyone help. The value I am looking for can be found at:
Administer -> Site Building -> Menus -> (Select Menu) -> Edit Menu -> Title
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不使用菜单模块为您创建的每个菜单生成的块。它有菜单的标题,以及菜单中的所有菜单项。
该块可以在块系统中找到:
admin/build/block
,您可以在其中决定它应该显示在哪里等。Why don't you use the block the the menu module generates for each menu you create. It has the title of the menu, and all the menu items in the menu.
The block can be found in the block system:
admin/build/block
, where you can decide where it should be shown etc.