__('Main Sidebar', 'arise'),
'id' => 'arise_main_sidebar',
'description' => __('Shows widgets at Main Sidebar.', 'arise'),
'before_widget' => '',
'before_title' => '
',
));
register_sidebar(array(
'name' => __('Display Contact Info at Header ', 'arise'),
'id' => 'arise_header_info',
'description' => __('Shows widgets on all page.', 'arise'),
'before_widget' => '',
'after_widget' => '
',
));
register_sidebar(array(
'name' => __('Front Page Section', 'arise'),
'id' => 'arise_corporate_page_sidebar',
'description' => __('Shows widgets on Front Page. You may use some of this widgets: TF: Featured Recent Work, TF: Testimonial, TF: Slogan', 'arise'),
'before_widget' => '',
'before_title' => '',
));
register_sidebar(array(
'name' => __('Contact Page Sidebar', 'arise'),
'id' => 'arise_contact_page_sidebar',
'description' => __('Shows widgets on Contact Page Template.', 'arise'),
'before_widget' => '',
'before_title' => '',
));
register_sidebar(array(
'name' => __('Shortcode For Contact Page', 'arise'),
'id' => 'arise_form_for_contact_page',
'description' => __('Add Contact Form 7 Shortcode using text widgets Ex: [contact-form-7 id="137" title="Contact form 1"]', 'arise'),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
));
global $arise_settings;
$arise_settings = wp_parse_args( get_option( 'arise_theme_options', array() ), arise_get_option_defaults_values() );
for($i =1; $i<= $arise_settings['arise_footer_column_section']; $i++){
register_sidebar(array(
'name' => __('Footer Column ', 'arise') . $i,
'id' => 'arise_footer_'.$i,
'description' => __('Shows widgets at Footer Column ', 'arise').$i,
'before_widget' => '',
'before_title' => '',
));
}
register_sidebar(array(
'name' => __('WooCommerce Sidebar', 'arise'),
'id' => 'arise_woocommerce_sidebar',
'description' => __('Add WooCommerce Widgets Only', 'arise'),
'before_widget' => '',
'after_widget' => '
',
'before_title' => '',
));
}