Bir HTML5_base tema için bir özel bölge ekleme (Drupal)

0 Cevap php

I'm new to creating custom themes. I'm trying to add a custom region. The custom region I'm trying to create is called "Top Bars." in the .info file:

regions[header] = Header
regions[content_top] = Content top
regions[content_bottom] = Content bottom
regions[sidebar_first] = First sidebar
regions[sidebar_second] = Second sidebar
regions[footer_region] = Footer
regions[top_bars] = Top Bars

page.tpl.php dosyasında:

<?php if ($top_bars): ?>

<?php print $top_bars ?>

<?php endif; ?>

Ben de Devel modülü etkin olması ve benim önbelleği temizlemeyi denedim.

I also tried writing this page.tpl.php dosyasında:

<div id="top_bars">
        <?php print $top_bars ?>
</div>

0 Cevap