Skip to content

Instantly share code, notes, and snippets.

@chrisegg
Last active August 29, 2015 13:57
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 chrisegg/9863453 to your computer and use it in GitHub Desktop.
Save chrisegg/9863453 to your computer and use it in GitHub Desktop.
<?php
//* Do NOT include the opening php tag
genesis_register_sidebar( array(
'id' => 'welcome',
'name' => __( 'Welcome', 'minimum' ),
'description' => __( 'This is the Welcome section of the homepage.', 'minimum' ),
) );
genesis_register_sidebar( array(
'id' => 'home-bottom-message',
'name' => __( 'Home Bottom Message', 'minimum' ),
'description' => __( 'This is the Home Bottom Message section of the homepage.', 'minimum' ),
) );
genesis_register_sidebar( array(
'id' => 'home-bottom-1',
'name' => __( 'Home Bottom 1', 'minimum' ),
'description' => __( 'This is the first Home Bottom section of the homepage.', 'minimum' ),
) );
genesis_register_sidebar( array(
'id' => 'home-bottom-2',
'name' => __( 'Home Bottom 2', 'minimum' ),
'description' => __( 'This is the second Home Bottom section of the homepage.', 'minimum' ),
) );
genesis_register_sidebar( array(
'id' => 'home-bottom-3',
'name' => __( 'Home Bottom 3', 'minimum' ),
'description' => __( 'This is the third Home Bottom section of the homepage.', 'minimum' ),
) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment