Drupal5 New region

Posted by: 
Dominique De Cooman

Put this in your template.php (if not allready in it) and add new regions.

<?php
function name_of_your_theme_regions() {
  return array(
       'left' => t('left sidebar'),
       'right' => t('right sidebar'),
       'content' => t('content'),
       'header' => t('header'),
       'footer' => t('footer')
  );
}
?>

Add new comment