Skip to content

Instantly share code, notes, and snippets.

@billrobbins
Created February 17, 2012 04:06
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 billrobbins/1850526 to your computer and use it in GitHub Desktop.
Save billrobbins/1850526 to your computer and use it in GitHub Desktop.
Extra Sidebars in Media Theme
register_sidebar( array(
'name' => __('Slider 5'),
'description' => __('The fifth tab in the home page slider'),
'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h2 class="widgettitle">', 'after_title' => '</h2>'
) );
register_sidebar( array(
'name' => __('Slider 6'),
'description' => __('The sixth tab in the home page slider'),
'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', '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