Skip to content

Instantly share code, notes, and snippets.

@kriot1
Last active August 26, 2015 06:35
Show Gist options
  • Save kriot1/3b623db856ff1fedd0ac to your computer and use it in GitHub Desktop.
Save kriot1/3b623db856ff1fedd0ac to your computer and use it in GitHub Desktop.
Add widgets to admin dashboard
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.
// Add Widgets to admin dashboard
genesis_register_sidebar( array(
'id' => 'signup-top',
'name' => __( 'Signup Top', 'themename' ),
'description' => __( 'This is the top section of signup page.', 'themename' ),
) );
genesis_register_sidebar( array(
'id' => 'signup-middle',
'name' => __( 'Signup Middle', 'themename' ),
'description' => __( 'This is the middle section of signup page.', 'themename' ),
) );
genesis_register_sidebar( array(
'id' => 'signup-bottom',
'name' => __( 'Signup Bottom', 'themename' ),
'description' => __( 'This is the bottom section of signup page.', 'themename' ),
) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment