array( 'setting' => array(), 'control' => array( 'type' => 'parent_heading', 'priority' => 1, 'label' => esc_html__( 'Theme Styling', 'bluestick' ), 'section' => 'bluestick_theme_color_settings', ), ), //Dark Theme Color Enable/Disable 'bluestick_dark_theme_mode' => array( 'setting' => array( 'default' => false, 'sanitize_callback' => array( 'bluestick_Customizer_Sanitize', 'sanitize_checkbox' ), ), 'control' => array( 'type' => 'toggle', 'priority' => 1, 'label' => esc_html__( 'Dark Theme Mode', 'bluestick' ), 'section' => 'bluestick_theme_color_settings', ), ), //Custom Color Enable/Disable 'bluestick_custom_color' => array( 'setting' => array( 'default' => false, 'sanitize_callback' => array( 'bluestick_Customizer_Sanitize', 'sanitize_checkbox' ), ), 'control' => array( 'type' => 'toggle', 'priority' => 7, 'label' => esc_html__( 'Custom Color Scheme Enable', 'bluestick' ), 'section' => 'bluestick_theme_color_settings', ), ), //Custom Color Picker 'link_color' => array( 'setting' => array( 'default' => '#7b40c0', 'sanitize_callback' => array( 'bluestick_Customizer_Sanitize', 'sanitize_alpha_color' ), ), 'control' => array( 'type' => 'color', 'priority' => 8, 'description' => esc_html__( 'Note: Enable Custom Color Scheme', 'bluestick' ), 'section' => 'bluestick_theme_color_settings', 'choices' => array( 'alpha' => true, ), ), ), // 2. Theme Size Layout Heading 'bluestick_theme_size_layout_heading' => array( 'setting' => array(), 'control' => array( 'type' => 'heading', 'priority' => 11, 'label' => esc_html__( 'Theme Layout', 'bluestick' ), 'section' => 'bluestick_theme_size_settings', ), ), // Theme Size Layout 'bluestick_layout_style' => array( 'setting' => array( 'default' => 'wide', 'sanitize_callback' => array( 'bluestick_Customizer_Sanitize', 'sanitize_radio' ), ), 'control' => array( 'type' => 'radio_image', 'priority' => 12, //'label' => esc_html__( 'Theme Layout', 'bluestick' ), 'section' => 'bluestick_theme_size_settings', 'choices' => array( 'wide' => BLUESTICK_PARENT_URI . '/assets/images/bg-patterns/wide.png', 'boxed' => BLUESTICK_PARENT_URI . '/assets/images/bg-patterns/boxed.png', ), ), ), ); } } new bluestick_Customize_Theme_Styling_Option(); endif;