将自定义区域添加到 HTML5_base 主题 (Drupal)
我是创建自定义主题的新手。我正在尝试添加自定义区域。我尝试创建的自定义区域称为“顶部栏”。 在 .info 文件 中:
regions[header] = Header
regions[content_top] = Content top
regions[content_bottom] = Content bottom
regions[sidebar_first] = First sidebar
regions[sidebar_second] = Second sidebar
regions[footer_region] = Footer
regions[top_bars] = Top Bars
在 page.tpl.php 文件中:
<?php if ($top_bars): ?>
<?php print $top_bars ?>
<?php endif; ?>
我还启用了 Devel 模块并尝试清除缓存。
我还尝试在 page.tpl.php 文件中编写此内容:
<div id="top_bars">
<?php print $top_bars ?>
</div>
I'm new to creating custom themes. I'm trying to add a custom region. The custom region I'm trying to create is called "Top Bars."
in the .info file:
regions[header] = Header
regions[content_top] = Content top
regions[content_bottom] = Content bottom
regions[sidebar_first] = First sidebar
regions[sidebar_second] = Second sidebar
regions[footer_region] = Footer
regions[top_bars] = Top Bars
in the page.tpl.php file:
<?php if ($top_bars): ?>
<?php print $top_bars ?>
<?php endif; ?>
I also have the Devel module enabled and tried clearing my cache.
I also tried writing this in the page.tpl.php file:
<div id="top_bars">
<?php print $top_bars ?>
</div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看此博客 post :
基本上,这个人必须将其添加到他的 template.php 中:
Check this blog post :
basicly the guy had to add this to his template.php :