'Main Sidebar',
'id' => 'sidebar-1',
'description' => 'Widgets placed in this area will appear on all posts and pages with a sidebar.',
'before_widget' => '
',
'before_title' => ''
) );
register_sidebar( array(
'name' => 'Homepage: Right of Slider',
'id' => 'sidebar-2',
'description' => 'Widgets placed in this area will appear to the right of the homepage slider.',
'before_widget' => '
',
'before_title' => ''
) );
register_sidebar( array(
'name' => 'Homepage: Widget Row',
'id' => 'sidebar-3',
'description' => 'Widgets placed in this area will appear in the row beneath the slider. A maximum of 3 widgets can be used in this area.',
'before_widget' => '',
'before_title' => ''
) );
register_sidebar( array(
'name' => 'Homepage: Left of Blog',
'id' => 'sidebar-4',
'description' => 'Widgets placed in this area will appear to the left of the blog on the homepage.',
'before_widget' => '
',
'before_title' => ''
) );
register_sidebar( array(
'name' => 'Footer: First Column',
'id' => 'sidebar-5',
'description' => 'Widgets placed in this area will appear in the far left column of the footer on all pages.',
'before_widget' => '',
'before_title' => ''
) );
register_sidebar( array(
'name' => 'Footer: Second Column',
'id' => 'sidebar-6',
'description' => 'Widgets placed in this area will appear in the middle left column of the footer on all pages.',
'before_widget' => '',
'before_title' => ''
) );
register_sidebar( array(
'name' => 'Footer: Third Column',
'id' => 'sidebar-7',
'description' => 'Widgets placed in this area will appear in the middle right column of the footer on all pages.',
'before_widget' => '',
'before_title' => ''
) );
register_sidebar( array(
'name' => 'Footer: Fourth Column',
'id' => 'sidebar-8',
'description' => 'Widgets placed in this area will appear in the far right column of the footer on all pages.',
'before_widget' => '',
'before_title' => ''
) );
}
?>