add_section( 'anirohotellight-header-title-position-section' , array( 'title' => __( 'Site header', 'aniro-hotel-light' ), 'priority' => 30, 'description' => __( 'Site header options.', 'aniro-hotel-light' ) ) ); //text for button $wp_customize->add_setting('anirohotellight_header_button_text', array( 'default' => 'Book now', 'sanitize_callback' => 'anirohotellight_sanitize_text' ) ); $wp_customize->add_control('anirohotellight_header_button_text', array( 'section' => 'anirohotellight-header-title-position-section', 'label' =>__( 'Text for button in header:', 'aniro-hotel-light' ), 'type' => 'text' ) ); //Button link $wp_customize->add_setting('anirohotellight_header_button_link', array( 'default' => '', 'sanitize_callback' => 'anirohotellight_sanitize_uri' ) ); $wp_customize->add_control('anirohotellight_header_button_link', array( 'section' => 'anirohotellight-header-title-position-section', 'label' => 'Link for button in header', 'type' => 'url' ) ); /*******************************************************************************************/ // Show/hide address and telephone number $wp_customize->add_setting('anirohotellight_top_options_hide_data', array( 'default' => '', 'sanitize_callback' => 'anirohotellight_sanitize_checkbox', )); $wp_customize->add_control('anirohotellight_top_options_hide_data', array( 'type' => 'checkbox', 'label' => __( 'Hide hotel address and telephone number?', 'aniro-hotel-light' ), 'section' => 'anirohotellight-header-title-position-section', ) );