在 Drupal 7 中为不同的节点使用不同的模板

2022-01-23 00:00:00 php drupal drupal-7

I am using Drupal 7. I want to add a template for a group of nodes. For example, If i have three nodes node/3, node/4, and node/5, I want to use a particular template. Is there a way to do that? If it is, How can i do that? Or What is the best alternate method?

Now I am using page.tpl.php template for all the pages except the front page.

解决方案

There are many ways to do that.

For example you can place condition on node id in page.tpl.php.

Or you can use different templates for each node like here Template suggestions for page on specific node id and inside this templates you can include same template for each group using just include.

相关文章