add_section( 'header_background', array( 'title' => __( 'Header background', 'artistic-header' ), 'priority' => 11 ) ); $customizer->add_setting( 'upload_image' ); $customizer->add_control( new WP_Customize_Image_Control( $customizer, 'upload_image', array( 'label' => __( 'Upload image', 'artistic-header' ), 'section' => 'header_background', 'settings' => 'upload_image' ) ) ); $customizer->add_section( 'header_text_color', array( 'title' => __( 'Header text color', 'artistic-header' ), 'priority' => 11 ) ); $customizer->add_setting( 'select_color', array( 'default' => '#000000', 'sanitize_callback' => 'sanitize_hex_color', ) ); $customizer->add_control( new WP_Customize_Color_Control( $customizer, 'select_color', array( 'label' => __( 'Select color', 'artistic-header' ), 'section' => 'header_text_color', 'settings' => 'select_color', ) ) ); } ); ?>