Using different templates for different nodes in Drupal 7

偶尔善良 提交于 2019-12-13 04:52:28

问题


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.


回答1:


Have you had a look at this: https://drupal.org/node/1089656

The node--[type|nodeid].tpl.php part may be what you are looking for.

The theme developer module can be a good way to find out the proper template suggestions https://drupal.org/project/devel_themer




回答2:


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.



来源:https://stackoverflow.com/questions/20190531/using-different-templates-for-different-nodes-in-drupal-7

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!