by Bhumi // Feb 16,2013 // No comment
Drupal is a popular Content Management System.In this tutorial,I will cover how to create custom regions in Drupal 7 themes.Regions in the drupal is same like positions in other cms which is used to define the position of content or block in front.
Drupal provides own pre-defined regions in a theme but sometimes, as per your requirement you want to create new own regions in drupal
So, lets see how to do it.
1: Go to the theme front theme folder and open yourtheme.info file and put the below code into it.
|
1 2 |
regions[bhumi] = Bhumi |
You can change the above name of region to the any desired name you want which looks like below screen in admin.

Keep in Mind If newly created region will not display in block section of admin,go to the appearance,select theme and save configuration.
2. Open your theme’s page.tpl.php file and here you need to place the relevant template tags.The regions are rendered using the function render() of Drupal
like here ,I have defined the region bhumi in my themes.info file,so I would add following line of code into the relevant place of page.tpl.php
|
1 2 |
<?php print render($page[bhumi]); ?> |
After that region looks like following screen in front.

Thank you for reading, good luck and let me know if you run in to any problems & I’ll help as much as I can
Hope this post will helpful for you, waiting for your responses.Thanks for reading and feel free to share your thoughts! Don’t Forget to Follow us on Twitter or Subscribe us to Get the Latest Updates.
Installation Database Error in Drupal
Recently I am working with Drupal and i am trying to install latest version of drupal which drupal 7 and i got the below screen READ MORE
Disable editor from comment in Drupal
Here is one quick article about how to disable editor display in comment with drupal.When you install any module for editor like ckeditor or WYSIWYG READ MORE
Two ways to change page template in Drupal 6
Earlier we have seen “Drupal Basics“.In this article I am going to cover Two ways to change page template in Drupal 6. There are many READ MORE
When I heard Drupal, First thing comes in the mind is content management system. so First of all, let me explain about content management systems. READ MORE
Be a Contributor at CreativeDev.Write an article or tutorial to the community and share some of your knowledge!