add_section( 'supermag-design-default-layout-option', array( 'priority' => 10, 'capability' => 'edit_theme_options', 'theme_supports' => '', 'title' => __( 'Default Layout', 'supermag' ), 'panel' => 'supermag-design-panel' ) ); /*global default layout*/ $wp_customize->add_setting( 'supermag_theme_options[supermag-default-layout]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['supermag-default-layout'], 'sanitize_callback' => 'supermag_sanitize_select' ) ); $choices = supermag_default_layout(); $wp_customize->add_control( 'supermag_theme_options[supermag-default-layout]', array( 'choices' => $choices, 'label' => __( 'Default Layout', 'supermag' ), 'description'=> __( 'Boxed will add box-shadow', 'supermag' ), 'section' => 'supermag-design-default-layout-option', 'settings' => 'supermag_theme_options[supermag-default-layout]', 'type' => 'select' ) );