drupal 7的主题站点地图

时间:2015-05-13 16:30:51

标签: drupal-7 sitemap drupal-theming

有一种很好的方法来描述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页面的输出?

0 个答案:

没有答案