需要有单独的“完整的”站点上每个页面的 Drupal 主题
我想构建一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建执行 PHP 代码的自定义块。以下代码片段应显示
$custom_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
.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.