Custom template for specific node in Drupal 6?

可紊 提交于 2019-12-10 15:12:07

问题


I know there are a ton of different custom template files like page.tpl.php and node.tpl.php etc. But is there a way to make a custom template for a specific node ID? This doesn't work node-3.tpl.php, but is there a way to accomplish this?

UPDATE CODE

function phptemplate_preprocess_node(&$vars) {
    $vars['template_files'][] = 'node-' . $vars['nid'];
}

回答1:


For Drupal 6, the page template is 'page-node-3.tpl.php' and read the manual at http://drupal.org/node/1089642

Drupal 7, page--node--3.tpl.php : http://drupal.org/node/1089656

Thanks @Clive and @asiby.




回答2:


Make sure that you rebuild the theme registry. Failure to do so will result in Drupal completely ignoring the node-x.tpl.php file that you will add.



来源:https://stackoverflow.com/questions/11870349/custom-template-for-specific-node-in-drupal-6

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