remove_control('header_textcolor'); /* Header Section */ $wp_customize->add_panel( 'header_options', array( 'priority' => 450, 'capability' => 'edit_theme_options', 'title' => __('Header Settings', 'appointment'), ) ); $wp_customize->add_section( 'header_image' , array( 'title' => __('Custom Header Settings', 'appointment'), 'panel' => 'header_options', 'priority' => 200, ) ); $wp_customize->add_setting( 'appointment_options[header_one_name]', array( 'default' => '', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', 'type' => 'option', )); $wp_customize->add_control('appointment_options[header_one_name]', array( 'label' => __('Header Headline :', 'appointment'), 'section' => 'header_image', 'type' => 'text', 'priority' => 140, )); $wp_customize->add_setting('appointment_options[header_one_text]' , array( 'default' => '', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', 'type' => 'option', )); $wp_customize->add_control( 'appointment_options[header_one_text]', array( 'label' => __('Header Text :', 'appointment'), 'section' => 'header_image', 'type' => 'text', 'priority' => 140, )); //Header logo setting $wp_customize->add_section( 'header_logo' , array( 'title' => __('Header Logo setting', 'appointment'), 'panel' => 'header_options', 'priority' => 400, ) ); $wp_customize->add_setting( 'appointment_options[upload_image_logo]' , array( 'default' => '', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'esc_url_raw', 'type' => 'option', )); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'appointment_options[upload_image_logo]', array( 'label' => __( 'Upload a 150x150 for Logo Image', 'appointment' ), 'section' => 'header_logo', 'priority' => 50, ) ) ); //Enable/Disable logo text $wp_customize->add_setting( 'appointment_options[text_title]',array( 'default' => 1, 'sanitize_callback' => 'sanitize_text_field', 'type' => 'option' )); $wp_customize->add_control( 'appointment_options[text_title]', array( 'type' => 'checkbox', 'label' => __('Enable/Disabe Logo','appointment'), 'section' => 'header_logo', 'priority' => 100, ) ); //Logo width $wp_customize->add_setting( 'appointment_options[width]',array( 'sanitize_callback' => 'sanitize_text_field', 'default' => 200, 'type' => 'option', )); $wp_customize->add_control( 'appointment_options[width]', array( 'type' => 'text', 'label' => __('Enter Logo Width','appointment'), 'section' => 'header_logo', 'priority' => 400, ) ); //Logo Height $wp_customize->add_setting( 'appointment_options[height]',array( 'sanitize_callback' => 'sanitize_text_field', 'default' => 50, 'type'=>'option', )); $wp_customize->add_control( 'appointment_options[height]', array( 'type' => 'text', 'label' => __('Enter Logo Height','appointment'), 'section' => 'header_logo', 'priority' =>410, ) ); //Text logo $wp_customize->add_setting( 'appointment_options[enable_header_logo_text]' ,array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field', 'type' =>'option', )); $wp_customize->add_control( 'appointment_options[enable_header_logo_text]', array( 'type' => 'checkbox', 'label' => __('Show Logo text','appointment'), 'section' => 'header_logo', 'priority' => 200, ) ); /* favicon option */ $wp_customize->add_section( 'appoointment_favicon' , array( 'title' => __( 'Site favicon', 'appointment' ), 'priority' => 500, 'description' => __( 'Upload a favicon', 'appointment' ), 'panel' => 'header_options', ) ); $wp_customize->add_setting('appointment_options[upload_image_favicon]', array( 'sanitize_callback' => 'esc_url_raw', 'capability' => 'edit_theme_options', 'type' => 'option', ) ); $wp_customize->add_control( new WP_Customize_Image_Control( $wp_customize, 'appointment_options[upload_image_favicon]', array( 'label' => __( 'Choose your favicon (ideal width and height is 16x16 or 32x32)', 'appointment' ), 'section' => 'appoointment_favicon', ) ) ); //Header social Icon $wp_customize->add_section( 'header_social_icon', array( 'title' => 'Social Link ', 'priority' => 600, 'panel' => 'header_options', ) ); //Show and hide Header Social Icons $wp_customize->add_setting( 'appointment_options[header_social_media_enabled]' , array( 'default' => 0, 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', 'type' => 'option', ) ); $wp_customize->add_control( 'appointment_options[header_social_media_enabled]', array( 'label' => __('Hide Social icons','appointment'), 'section' => 'header_social_icon', 'type' => 'checkbox', ) ); // Facebook link $wp_customize->add_setting( 'appointment_options[social_media_facebook_link]', array( 'default' => '#', 'sanitize_callback' => 'sanitize_text_field', 'type' => 'option', ) ); $wp_customize->add_control( 'appointment_options[social_media_facebook_link]', array( 'label' => __('Facebook URL','appointment'), 'section' => 'header_social_icon', 'type' => 'text', ) ); $wp_customize->add_setting( 'appointment_options[facebook_media_enabled]',array( 'default' => 1, 'sanitize_callback' => 'sanitize_text_field', 'type' => 'option', )); $wp_customize->add_control( 'appointment_options[facebook_media_enabled]', array( 'type' => 'checkbox', 'label' => __('Open Link New tab/window','appointment'), 'section' => 'header_social_icon', 'disabled' => 'disabled', ) ); //twitter link $wp_customize->add_setting( 'appointment_options[social_media_twitter_link]', array( 'default' => '#', 'type' => 'theme_mod', 'sanitize_callback' => 'sanitize_text_field', 'type' => 'option', ) ); $wp_customize->add_control( 'appointment_options[social_media_twitter_link]', array( 'label' => __('Twitter URL','appointment'), 'section' => 'header_social_icon', 'type' => 'text', ) ); $wp_customize->add_setting( 'appointment_options[twitter_media_enabled]' ,array( 'default' => 1, 'sanitize_callback' => 'sanitize_text_field', 'type' => 'option', )); $wp_customize->add_control( 'appointment_options[twitter_media_enabled]', array( 'type' => 'checkbox', 'label' => __('Open Link New tab/window','appointment'), 'section' => 'header_social_icon', ) ); //Linkdin link $wp_customize->add_setting( 'appointment_options[social_media_linkedin_link]' , array( 'default' => '#', 'sanitize_callback' => 'sanitize_text_field', 'type' => 'option', ) ); $wp_customize->add_control( 'appointment_options[social_media_linkedin_link]', array( 'label' => __('Linkdin URL','appointment'), 'section' => 'header_social_icon', 'type' => 'text', ) ); $wp_customize->add_setting( 'appointment_options[linkedin_media_enabled]' ,array( 'default' => 1, 'sanitize_callback' => 'sanitize_text_field', 'type' => 'option', )); $wp_customize->add_control( 'appointment_options[linkedin_media_enabled]', array( 'type' => 'checkbox', 'label' => __('Open Link New tab/window','appointment'), 'section' => 'header_social_icon', ) ); //Custom css $wp_customize->add_section( 'custom_css' , array( 'title' => __('Custom css', 'appointment'), 'panel' => 'header_options', 'priority' => 100, ) ); $wp_customize->add_setting( 'appointment_options[webrit_custom_css]' , array( 'default' => '', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', 'type'=> 'option', )); $wp_customize->add_control( 'appointment_options[webrit_custom_css]', array( 'label' => __('Custom css snippet:', 'appointment'), 'section' => 'custom_css', 'type' => 'textarea', 'priority' => 100, )); } add_action( 'customize_register', 'appointment_header_customizer' ); ?>