Skip to content

Instantly share code, notes, and snippets.

@wisecrab
Last active August 29, 2015 14:28
Show Gist options
  • Select an option

  • Save wisecrab/e198b9ad93bb22d078dc to your computer and use it in GitHub Desktop.

Select an option

Save wisecrab/e198b9ad93bb22d078dc to your computer and use it in GitHub Desktop.
//Register custom sidebar
function theme_slug_widgets_init() {
register_sidebar( array (
'name' => __( 'Custom Sidebar', 'theme_slug' ),
'id' => 'custom_sidebar',
'before_widget' => '<aside id="%1$s" class="widget %2$s" role="complementary">',
'after_widget' => "</aside>",
'before_title' => '<h4 class="widget-title">',
'after_title' => '</h4>',
));
}
add_action( 'init', 'theme_slug_widgets_init' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment