PHP Drupal中的内容类型(节点)特定页面模板

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Drupal中的内容类型(节点)特定页面模板相关的知识,希望对你有一定的参考价值。

/* Makes node (or content-type) specific page templates. Add this to template.php. Replace templatename with your own template name */
function templatename_preprocess_page(&$vars) {

	if (arg(0) == 'node' && is_numeric(arg(1))) {
		$node = node_load(arg(1));
		$vars['template_files'][] = 'page-node-' . $node->type;
	}
}

以上是关于PHP Drupal中的内容类型(节点)特定页面模板的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Drupal 7 中的节点页面上显示分类内容

在 Drupal 7 中访问 html.tpl.php 中的节点属性

PHP Drupal - 页面模板取决于节点类型

当自定义模板已应用于节点的内容类型时,如何在 Drupal 6 中自定义特定节点?

PHP Drupal删除特定内容类型的特定选项卡

PHP Drupal:根据页面ID将节点内容添加到块中