自定义区域不显示在 Drupal Sub 主题中
我正在尝试为我的 Drupal 7 子主题创建自定义区域。我遵循的过程是:
1)在子主题的 .info 文件中指定子区域,如下所示: 区域['sub_region'] = 子区域 2)在page.tpl.php文件中, 打印渲染($page['sub_region']);在我希望子区域出现的位置。
3)清除缓存
但是,这个新的子区域没有出现在我的块中。
有人指出我做错了什么吗?或者需要做更多
谢谢
I am attempting to create a custom region for my Drupal 7 sub theme. The process I am following is:
1) Specify sub region in .info file of subtheme like this:
regions['sub_region'] = Sub region
2) In the page.tpl.php file,
print render($page['sub_region']); at the location where I wish the sub region would appear.
3) Cleared the Cache
However, this new sub region does not appear in my Blocks.
Anybody have pointers as to what I am doing wrong ? Or need to do more
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
.info 中区域声明的语法不正确。区域名称不应包含单引号。
.info 文件的文档
Your syntax for the region declaration in .info is incorrect. There should not be single quotes wrapping the region name.
Documentation for .info file
可能值得阅读此,特别是本节。
编辑
在右上角的块页面上有选项卡,以便您可以在不同的主题上设置不同的块。您正在选择子主题吗?
It might be worth having a read of this, specially this section.
EDIT
On your blocks page in the top right corner are tabs so you can set different blocks on different themes. Are you selecting the sub theme?