add_section( 'header_style_options' , array( 'title' => __( 'Header Layout', 'blogbull' ), 'panel' => 'header_options_panel', ) ); $wp_customize->add_setting( 'blogbull_options[select_header_layout_style]', array( 'default' => $blogbull_default['select_header_layout_style'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'blogbull_sanitize_radio' ) ); $wp_customize->add_control( new Blogbull_Custom_Radio_Image_Control( $wp_customize, 'blogbull_options[select_header_layout_style]', array( 'label' => esc_html__( 'Select Header Layout', 'blogbull' ), 'section' => 'header_style_options', 'choices' => blogbull_get_header_layout(), ) ) ); $wp_customize->add_setting( 'blogbull_options[enable_header_advertisement]', array( 'default' => $blogbull_default['enable_header_advertisement'], 'sanitize_callback' => 'blogbull_sanitize_checkbox', ) ); $wp_customize->add_control( 'blogbull_options[enable_header_advertisement]', array( 'label' => __( 'Enable Header Advertisement', 'blogbull' ), 'section' => 'header_style_options', 'type' => 'checkbox', ) ); $wp_customize->add_setting( 'blogbull_options[header_advert_image]', array( 'default' => $blogbull_default['header_advert_image'], 'sanitize_callback' => 'blogbull_sanitize_image', ) ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'blogbull_options[header_advert_image]', array( 'label' => __('Upload Banner Advertisement', 'blogbull'), 'section' => 'header_style_options', 'active_callback' => 'blogbull_header_advertisement', ) ) ); $wp_customize->add_setting( 'blogbull_options[header_advert_image_url]', array( 'default' => $blogbull_default['header_advert_image_url'], 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'blogbull_options[header_advert_image_url]', array( 'label' => __( 'Banner Advertisement URL', 'blogbull' ), 'section' => 'header_style_options', 'type' => 'text', 'active_callback' => 'blogbull_header_advertisement', ) );