Skip to content

Instantly share code, notes, and snippets.

@cdils
Last active December 10, 2015 09:28
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/4414767 to your computer and use it in GitHub Desktop.
Save cdils/4414767 to your computer and use it in GitHub Desktop.
Register a new widget area in a Genesis Framework site.
/** Register widget area */
genesis_register_sidebar( array(
'id' => 'my-widget', // Feel free to use a more meaningful name here
'name' => __( 'My Widget', 'theme-slug' ),
'description' => __( 'This is a description of my new widget area', 'theme-slug' ),
) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment