add_section( 'header_style_options' , array( 'title' => __( 'Header style Option', 'blogsky' ), 'panel' => 'header_options_panel', ) ); $wp_customize->add_setting( 'blogsky_options[select_header_layout_style]', array( 'default' => $blogsky_default['select_header_layout_style'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blogsky_sanitize_radio' ) ); $wp_customize->add_control( new BlogSky_Custom_Radio_Image_Control( $wp_customize, 'blogsky_options[select_header_layout_style]', array( 'label' => esc_html__( 'Select Header Layout', 'blogsky' ), 'section' => 'header_style_options', 'choices' => blogsky_get_header_layout(), ) ) );