Skip to content

Instantly share code, notes, and snippets.

@jshcrowthe
Created January 30, 2014 01:42
Show Gist options
  • Save jshcrowthe/8701117 to your computer and use it in GitHub Desktop.
Save jshcrowthe/8701117 to your computer and use it in GitHub Desktop.
Wordpress Widget Register
if (function_exists('register_sidebar')) {
register_sidebar(array(
'name' => 'Sidebar Widgets',
'id' => 'sidebar-widgets',
'description' => 'These are widgets for the sidebar.',
'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