Created
August 12, 2013 15:02
-
-
Save StewartChamberlain/6211608 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php // Do Not include this line | |
// Home page widgets | |
genesis_register_sidebar( array( | |
'id' => 'home-featured-full', | |
'name' => __( 'Home Featured Full', 'CHILD_THEME_NAME' ), | |
'description' => __( 'This is the featured area if you want full width.', 'CHILD_THEME_NAME' ), | |
) ); | |
genesis_register_sidebar( array( | |
'id' => 'home-featured-left', | |
'name' => __( 'Home Featured Left', 'CHILD_THEME_NAME' ), | |
'description' => __( 'This is the featured area left side.', 'CHILD_THEME_NAME' ), | |
) ); | |
genesis_register_sidebar( array( | |
'id' => 'home-featured-right', | |
'name' => __( 'Home Featured Right', 'CHILD_THEME_NAME' ), | |
'description' => __( 'This is the featured area right side.', 'CHILD_THEME_NAME' ), | |
) ); | |
genesis_register_sidebar( array( | |
'id' => 'home-middle-1', | |
'name' => __( 'Home Middle 1', 'CHILD_THEME_NAME' ), | |
'description' => __( 'This is the home middle left area.', 'CHILD_THEME_NAME' ), | |
) ); | |
genesis_register_sidebar( array( | |
'id' => 'home-middle-2', | |
'name' => __( 'Home Middle 2', 'CHILD_THEME_NAME' ), | |
'description' => __( 'This is the home middle center area.', 'CHILD_THEME_NAME' ), | |
) ); | |
genesis_register_sidebar( array( | |
'id' => 'home-middle-3', | |
'name' => __( 'Home Middle 3', 'CHILD_THEME_NAME' ), | |
'description' => __( 'This is the home middle right area.', 'CHILD_THEME_NAME' ), | |
) ); | |
genesis_register_sidebar( array( | |
'id' => 'home-bottom', | |
'name' => __( 'Home Bottom', 'CHILD_THEME_NAME' ), | |
'description' => __( 'This is the home bottom area.', 'CHILD_THEME_NAME' ), | |
) ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment