Skip to content

Instantly share code, notes, and snippets.

@bepatrickdavid
Created August 5, 2015 13:21
Show Gist options
  • Save bepatrickdavid/ee7fcb2786cec03e45b9 to your computer and use it in GitHub Desktop.
Save bepatrickdavid/ee7fcb2786cec03e45b9 to your computer and use it in GitHub Desktop.
WP: register sidebar widget
if ( function_exists('register_sidebar') ) {
register_sidebar(array(
'name' => 'Footer column 1',
'id' => 'footer-column-1',
'before_widget' => '<li id="%1$s" class="widget %2$s">',
'after_widget' => '</li>',
'before_title' => '<h2 class="widgettitle">',
'after_title' => '</h2>',
));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment