frankyonnetti
7/7/2013 - 8:33 PM

#drupal theme other page.tpl files based on content type

Drupal 7 - theme other page.tpl files based on content type #drupal #d7

<?php
/* 
 * http://www.shekhargovindarajan.com/tips-n-tricks/drupal-6-different-page-templates-for-different-content-types
 */
 
	function THEME_NAME_preprocess_page(& $vars) {
		if (isset ($vars['node']) && $vars['node']->type == "blog") {
			$vars['template_files'] = array();
			$vars['template_files'][] = 'page-blog';
		}
	
		if (isset ($vars['node']) && $vars['node']->type == "forum") {
			$vars['template_files'] = array();
			$vars['template_files'][] = 'page-forum';
		}
	
		if (isset ($vars['node']) && $vars['node']->type == "webform") {
			$vars['template_files'] = array();
			$vars['template_files'][] = 'page-webform';
		}
	}
?>