add_section( 'header_style_options' , array( 'title' => __( 'Header style Option', 'blogaura' ), 'panel' => 'header_options_panel', ) ); $wp_customize->add_setting( 'blogaura_options[select_header_layout_style]', array( 'default' => $blogaura_default['select_header_layout_style'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blogaura_sanitize_radio' ) ); $wp_customize->add_control( new BlogAura_Custom_Radio_Image_Control( $wp_customize, 'blogaura_options[select_header_layout_style]', array( 'label' => esc_html__( 'Select Header Layout', 'blogaura' ), 'section' => 'header_style_options', 'choices' => blogaura_get_header_layout(), ) ) );