Skip to content

Instantly share code, notes, and snippets.

@cdils
Created December 24, 2012 17:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cdils/4370075 to your computer and use it in GitHub Desktop.
Save cdils/4370075 to your computer and use it in GitHub Desktop.
Customization for the Associate Theme Home page http://wp.me/p2Vyfh-hA
/** REMOVE THIS BIT OF CODE FOR THE ORIGINAL FEATURED WIDGET AREA */
genesis_register_sidebar( array(
'id' => 'featured',
'name' => __( 'Featured', 'associate' ),
'description' => __( 'This is the featured section.', 'associate' ),
) );
/** END REMOVE */
/** ADD IN THESE NEW WIDGET AREAS */
genesis_register_sidebar( array(
'id' => 'featured-left',
'name' => __( 'Featured Left', 'associate' ),
'description' => __( 'This is the featured left section.', 'associate' ),
) );
genesis_register_sidebar( array(
'id' => 'featured-right',
'name' => __( 'Featured Right', 'associate' ),
'description' => __( 'This is the featured right section.', 'associate' ),
) );
genesis_register_sidebar( array(
'id' => 'home-middle-4',
'name' => __( 'Home Middle #4', 'associate' ),
'description' => __( 'This is the fourth column of the home middle section.', 'associate' ),
) );
/** END ADD */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment