Skip to content

Instantly share code, notes, and snippets.

@BoweFrankema
Created February 4, 2013 15:21
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 BoweFrankema/4707366 to your computer and use it in GitHub Desktop.
Save BoweFrankema/4707366 to your computer and use it in GitHub Desktop.
Add a new CBOX Sidebar
/**
* Register New Sidebar
*/
function cbox_register_alt_sidebar()
{
register_sidebar(array(
'name' => 'Alternative Sidebar',
'id' => 'alt-sidebar',
'description' => "The Alternative widget area",
'before_widget' => '<article id="%1$s" class="widget %2$s">',
'after_widget' => '</article>',
'before_title' => '<h4>',
'after_title' => '</h4>'
));
}
add_action( 'init', 'cbox_register_alt_sidebar' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment