自定义区域不显示在 Drupal Sub 主题中

发布于 2024-12-27 04:21:38 字数 257 浏览 1 评论 0原文

我正在尝试为我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

坏尐絯℡ 2025-01-03 04:21:38

.info 中区域声明的语法不正确。区域名称不应包含单引号。

regions[sub_region] = Sub region

.info 文件的文档

Your syntax for the region declaration in .info is incorrect. There should not be single quotes wrapping the region name.

regions[sub_region] = Sub region

Documentation for .info file

始终不够 2025-01-03 04:21:38

可能值得阅读,特别是本节。

区域继承

子主题不会从父主题继承自定义区域。如果你
使用自定义区域,您应该从以下位置复制区域声明
父主题的 .info 文件。确保您的子主题的 page.tpl.php
文件与子主题的区域设置相匹配。

编辑

在此处输入图像描述

在右上角的块页面上有选项卡,以便您可以在不同的主题上设置不同的块。您正在选择子主题吗?

It might be worth having a read of this, specially this section.

Region inheritance

Sub-themes do not inherit custom regions from a parent theme. If you
are using custom regions, you should copy the region declarations from
the parent theme's .info file. Be sure your sub-theme's page.tpl.php
file matches the sub-theme's region settings.

EDIT

enter image description here

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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文