Skip to content

Instantly share code, notes, and snippets.

@sercomi
Created March 26, 2012 15:16
Show Gist options
  • Save sercomi/2205811 to your computer and use it in GitHub Desktop.
Save sercomi/2205811 to your computer and use it in GitHub Desktop.
WP: Setup widgets sidebar
<?php
/**
* The sidebar file.
*
* @package WordPress
*/
register_sidebar(array(
'name' => 'Main sidebar',
'id' => 'main-sidebar',
'description' => 'Widgets main sidebar',
'before_title' => '<h1>',
'after_title' => '</h1>'
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment