__('Main Sidebar', 'ascora'), // Sidebar Name
'id' => 'main-sidebar', // Unique ID
'description' => __('Widgets in this area will be shown on all posts and pages.', 'ascora'),
'before_widget' => '
', // Wrapper end
'before_title' => '' // Widget title end
));
// You can register additional sidebars below
register_sidebar(array(
'name' => __('Footer Widget One', 'ascora'),
'id' => 'footer-widget-one',
'description' => __('Widgets in this area will appear in the footer First Colum.', 'ascora'),
'before_widget' => '',
'before_title' => ''
));
register_sidebar(array(
'name' => __('Footer Widget Two', 'ascora'),
'id' => 'footer-widget-two',
'description' => __('Widgets in this area will appear in the footer Second Colum.', 'ascora'),
'before_widget' => '',
'before_title' => ''
));
register_sidebar(array(
'name' => __('Footer Widget Third', 'ascora'),
'id' => 'footer-widget-three',
'description' => __('Widgets in this area will appear in the footer Fort Third.', 'ascora'),
'before_widget' => '',
'before_title' => ''
));
register_sidebar(array(
'name' => __('Footer Widget Last', 'ascora'),
'id' => 'footer-widget-last',
'description' => __('Widgets in this area will appear in the footer Fort Last.', 'ascora'),
'before_widget' => '',
'before_title' => ''
));
}
add_action('widgets_init', 'ascora_register_widgets');
}