需要有单独的“完整的”站点上每个页面的 Drupal 主题

发布于 2024-09-06 01:59:22 字数 87 浏览 4 评论 0原文

我想构建一个 Drupal 演示站点,我可以在其中创建多个自定义主题并将每个主题显示在该站点的单独页面上。可以通过链接或菜单项进行访问。解决方案越“简单”越好。

I want to build a Drupal demonstration site where I can create several custom themes and display each on a separate page of the site. Access can be either via links or menu items. The "simpler" the solution the better.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

贪了杯 2024-09-13 01:59:22

创建执行 PHP 代码的自定义块。以下代码片段应显示 $custom_theme 中设置的主题中的当前页面。

global $custom_theme, $theme;

// If $theme is set, init_theme() will not initialize the custom theme.
unset($theme);

// Set the theme you want to use.
$custom_theme = "garland";
init_theme();

还有一个模块允许您根据某些规则更改使用的主题(例如,显示的内容类型、正在查看的页面的 URL 等):项目页面为 http://drupal.org/project/themekey

Create a custom block that executes PHP code. The following code snippet should show the current page in the theme set in $custom_theme.

global $custom_theme, $theme;

// If $theme is set, init_theme() will not initialize the custom theme.
unset($theme);

// Set the theme you want to use.
$custom_theme = "garland";
init_theme();

There is also a module that allows you to change the used theme based on some rules (in example, the content type being showed, the URL of the page being viewed, etc): the project page is http://drupal.org/project/themekey.

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