Skip to content

Instantly share code, notes, and snippets.

@pixelstorm
Created June 1, 2018 01:29
Show Gist options
  • Save pixelstorm/f6e3a82a4dccab4902cd414b1bdf6e66 to your computer and use it in GitHub Desktop.
Save pixelstorm/f6e3a82a4dccab4902cd414b1bdf6e66 to your computer and use it in GitHub Desktop.
register multiple sidebars
<?php
if ( function_exists('register_sidebar') ) {
register_sidebar(array(
'name' => 'sidebar 1',
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => '</div>',
'before_title' => '<h2>',
'after_title' => '</h2>'
));
register_sidebar(array(
'name' => 'footer sidebar 1',
'before_widget' => '<div id="%1$s" class="widget %2$s">',
'after_widget' => '</div>',
'before_title' => '<h2>',
'after_title' => '</h2>'
));
}?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment