2013-05-29 109 views
2

我沒有看到我在drupal主題中標題區域的內容是在page.tpl.php中使用以下代碼的最佳做法嗎?我無法在我的Drupal主題中顯示標題區域

<?php include('region--header.tpl.php'); ?> 

我看到的內容,當我使用上面的代碼,但我不能看到它時,我使用下面的代碼:

<?php if ($page['header']): ?> 
    <?php print render($page['header']); ?> 
<?php endif; ?> 

在我的.info文件我有以下代碼:

regions[header] = Header 

回答

3

將您的基地region.tpl.php文件複製到主題的模板文件夾。 region--header.tpl.php文件region.tpl.php文件應放置在模板文件夾中。

+0

如果我很清楚,該地區至少需要顯示一個街區,否? –

相關問題