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中的内容类型(节点)特定页面模板的主要内容,如果未能解决你的问题,请参考以下文章