add_setting( 'ed_header_banner', array( 'default' => $ashlar_default['ed_header_banner'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'ashlar_sanitize_checkbox', ) ); $wp_customize->add_control( 'ed_header_banner', array( 'label' => esc_html__( 'Enable Banner', 'ashlar' ), 'section' => 'header_image', 'type' => 'checkbox', 'priority' => 0, ) ); $wp_customize->add_setting( 'header_banner_title', array( 'default' => $ashlar_default['header_banner_title'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'header_banner_title', array( 'label' => esc_html__( 'Banner Title', 'ashlar' ), 'section' => 'header_image', 'type' => 'text', ) ); $wp_customize->add_setting( 'header_banner_description', array( 'default' => $ashlar_default['header_banner_description'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'header_banner_description', array( 'label' => esc_html__( 'Banner Description', 'ashlar' ), 'section' => 'header_image', 'type' => 'textarea', ) ); $wp_customize->add_setting( 'header_banner_title_link', array( 'default' => $ashlar_default['header_banner_title_link'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'header_banner_title_link', array( 'label' => esc_html__( 'Banner Title Link URL', 'ashlar' ), 'section' => 'header_image', 'type' => 'text', ) ); $wp_customize->add_setting( 'header_button_title', array( 'default' => $ashlar_default['header_button_title'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'header_button_title', array( 'label' => esc_html__( 'Banner Button Text', 'ashlar' ), 'section' => 'header_image', 'type' => 'text', ) );