有一种很好的方法来描述drupal 7中Taxonomy页面的输出,我偶然发现了使用下面的方法 (的template.php)
function kestrel_preprocess_page(&$variables)
{
if ( isset($variables['content']['system_main']['term_heading']) )
{
$variables['template_files'][] = 'taxonomy_term';
}//end if
if(isset($variables['page']['content']['system_main']['no_content']))
{
unset($variables['page']['content']['system_main']['no_content']);
}//end if
}//end function
然后创建taxonomy_term.tpl.php文件。好又简单。
是否有类似的简单方法可以创建.tpl文件来主题化/ sitemap页面的输出?