__( 'Sidebar Widget Area', 'accron' ),
'id' => 'accron-sidebar-primary',
'description' => __( 'The Primary Widget Area', 'accron' ),
'before_widget' => '',
'before_title' => '
',
) );
register_sidebar( array(
'name' => __( 'Footer', 'accron' ),
'id' => 'accron-footer-widget',
'description' => __( 'The Footer Widget Area', 'accron' ),
'before_widget' => ' ',
'before_title' => '',
) );
register_sidebar( array(
'name' => __( 'WooCommerce Widget Area', 'accron' ),
'id' => 'accron-woocommerce-sidebar',
'description' => __( 'This Widget Area For WooCommerce Widget', 'accron' ),
'before_widget' => '',
'before_title' => '',
) );
}
add_action( 'widgets_init', 'accron_widgets_init' );