Skip to content

Instantly share code, notes, and snippets.

@spsaucier
Last active December 20, 2015 00:48
Show Gist options
  • Select an option

  • Save spsaucier/6044001 to your computer and use it in GitHub Desktop.

Select an option

Save spsaucier/6044001 to your computer and use it in GitHub Desktop.
Wordpress - Create a Widget Area
if (function_exists('register_sidebar')) {
register_sidebar(array(
'name'=> 'Top Tabs',
'id' => 'top_tabs',
'before_widget' => '<li id="%1$s" class="widget %2$s">',
'after_widget' => '</li>',
'before_title' => '<h2 class="offscreen">',
'after_title' => '</h2>',
));
register_sidebar(array(
'name'=> 'Top Sidebar',
'id' => 'top_sidebar',
'before_widget' => '<li id="%1$s" class="widget %2$s">',
'after_widget' => '</li>',
'before_title' => '<h3>',
'after_title' => '</h3>',
));
register_sidebar(array(
'name'=> 'Left Sidebar',
'id' => 'left_sidebar',
'before_widget' => '<li id="%1$s" class="widget %2$s">',
'after_widget' => '</li>',
'before_title' => '<h3>',
'after_title' => '</h3>',
));
register_sidebar(array(
'name'=> 'Right Sidebar',
'id' => 'right_sidebar',
'before_widget' => '<li id="%1$s" class="widget %2$s">',
'after_widget' => '</li>',
'before_title' => '<h3>',
'after_title' => '</h3>',
));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment