如何在drupal中显示MENU_LOCAL_TASK选项卡上方的内容
所以我有一堆显示为选项卡的 drupal MENU_LOCAL_TASK 菜单项...
有没有办法可以将内容放置在该选项卡之上?
我正在使用 Drupal 6
so I have a bunch of drupal MENU_LOCAL_TASK menu items that gets displayed as tabs...
is there a way that I can position content above this tab?
I'm using drupal 6
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在上面的 page.tpl.php 中创建一个区域,其中输出 $tabs 变量。
前任:
1. 编辑 $THEME.info 文件以添加名为“above_tabs”的区域
2. 将 page.tpl.php 文件编辑到您希望内容显示的位置。
刷新缓存,您现在应该有一个可以分配内容块的区域。
Create a region in your page.tpl.php above where the $tabs variable is output.
Ex:
1. Edit your $THEME.info file to add a region called "above_tabs"
2. Edit your page.tpl.php file to where you want content to appear.
Flush cache and you should now have a region to which you can assign blocks of content.