__('Right Sidebar', 'auto-car'),
'id' => 'auto_car_main_sidebar',
'description' => __('Shows widgets at Main Sidebar.', 'auto-car'),
'before_widget' => '',
'before_title' => '
',
));
}
}
if (!in_array('layout-pro/layout-pro.php', apply_filters('active_plugins', get_option('active_plugins')))) {
if (! function_exists('auto_car_widgets_footer_initi')) {
add_action('widgets_init', 'auto_car_widgets_footer_initi');
function auto_car_widgets_footer_initi() {
register_sidebar( array(
'name' => __( 'Footer 1','auto-car' ),
'id' => 'footer-1',
'description' => __( 'Footer 1','auto-car' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => __( 'Footer 2','auto-car' ),
'id' => 'footer-2',
'description' => __( 'Footer 2','auto-car' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => __( 'Footer 3','auto-car' ),
'id' => 'footer-3',
'description' => __( 'Footer 3','auto-car' ),
'before_widget' => '',
'before_title' => '',
) );
}
}
}