Skip to content

Instantly share code, notes, and snippets.

@cagriuckan
Created August 12, 2016 13:31
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 cagriuckan/5df05845a73f825ae4356ba018dbdcc4 to your computer and use it in GitHub Desktop.
Save cagriuckan/5df05845a73f825ae4356ba018dbdcc4 to your computer and use it in GitHub Desktop.
if(function_exists('register_sidebar')) {
register_sidebar(array(
'name' => 'Sidebar',
'before_widget' => '<aside id="%1$s" class="widgets %2$s">',
'after_widget' => '</aside>',
'before_title' => '<div class="widget-title"><h2 class="title">',
'after_title' => '</h2></div>',
));
register_sidebar(array(
'name' => 'Sidebar2',
'before_widget' => '<aside id="%1$s" class="widgets %2$s">',
'after_widget' => '</aside>',
'before_title' => '<div class="widget-title"><h2 class="title">',
'after_title' => '</h2></div>',
));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment