Skip to content

Instantly share code, notes, and snippets.

@sguzik
Created May 8, 2012 18:42
Show Gist options
  • Save sguzik/2638389 to your computer and use it in GitHub Desktop.
Save sguzik/2638389 to your computer and use it in GitHub Desktop.
Making widgets work
function theme_widgets_init() {
register_sidebar( array(
'name' => 'Page Sidebar',
'id' => 'sidebar-page',
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => "</div>",
'before_title' => '<h4 class="widget-title">',
'after_title' => '</h4>',
) );
}
add_action( 'init', 'theme_widgets_init' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment