By default Home page have one widget area for Welcome Text. This article will show how to create a new widget area on home page and display the 3 columns teasers in that area. Step 1: Registering a new widget area “Home Top”. Add the following code in your functions.php file:
1 2 3 4 5 6 |
//* Register home top widget area genesis_register_sidebar( array( 'id' => 'home-top', 'name' => __( 'Home Top', 'whitespace' ), 'description' => __( 'This is the home top section will come below the banner image.', 'whitespace' ), ) ); |
Step 2: Navigate… Continue Reading