add_section( 'advanced-colors', array( 'priority' => 40, 'capability' => 'edit_theme_options', 'title' => esc_html__( 'Advanced Color', 'beauty-studio' ), 'panel' => 'beauty-studio-design-panel' ) ); /*Menu Active Background Color*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-menu-active-color]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-menu-active-color'], 'sanitize_callback' => 'sanitize_hex_color' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-menu-active-color]', array( 'label' => esc_html__( 'Menu Active Color', 'beauty-studio' ), 'section' => 'advanced-colors', 'settings' => 'beauty_studio_theme_options[beauty-studio-menu-active-color]', 'type' => 'color' ) ); /*Menu Hover Background Color*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-menu-hover-color]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-menu-hover-color'], 'sanitize_callback' => 'sanitize_hex_color', ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-menu-hover-color]', array( 'label' => esc_html__( 'Menu Hover Color', 'beauty-studio' ), 'section' => 'advanced-colors', 'settings' => 'beauty_studio_theme_options[beauty-studio-menu-hover-color]', 'type' => 'color' ) ); /*Sidebar BG Color*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-sidebar-bg-color]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-sidebar-bg-color'], 'sanitize_callback' => 'sanitize_hex_color' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-sidebar-bg-color]', array( 'label' => esc_html__( 'Sidebar Background Color', 'beauty-studio' ), 'section' => 'advanced-colors', 'settings' => 'beauty_studio_theme_options[beauty-studio-sidebar-bg-color]', 'type' => 'color' ) ); /*Footer Heading Color*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-footer-heading-color]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-footer-heading-color'], 'sanitize_callback' => 'sanitize_hex_color' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-footer-heading-color]', array( 'label' => esc_html__( 'Footer Heading Color', 'beauty-studio' ), 'description'=> esc_html__( 'Footer H1-H6 Color', 'beauty-studio' ), 'section' => 'advanced-colors', 'settings' => 'beauty_studio_theme_options[beauty-studio-footer-heading-color]', 'type' => 'color' ) ); /*Footer Text Color*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-footer-text-color]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-footer-text-color'], 'sanitize_callback' => 'sanitize_hex_color' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-footer-text-color]', array( 'label' => esc_html__( 'Footer Text Color', 'beauty-studio' ), 'section' => 'advanced-colors', 'settings' => 'beauty_studio_theme_options[beauty-studio-footer-text-color]', 'type' => 'color' ) ); /*Footer Link Color*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-footer-link-color]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-footer-link-color'], 'sanitize_callback' => 'sanitize_hex_color' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-footer-link-color]', array( 'label' => esc_html__( 'Footer Link Color', 'beauty-studio' ), 'section' => 'advanced-colors', 'settings' => 'beauty_studio_theme_options[beauty-studio-footer-link-color]', 'type' => 'color' ) ); /*Footer Link Hover Color*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-footer-link-hover-color]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-footer-link-hover-color'], 'sanitize_callback' => 'sanitize_hex_color' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-footer-link-hover-color]', array( 'label' => esc_html__( 'Footer Link Hover Color', 'beauty-studio' ), 'section' => 'advanced-colors', 'settings' => 'beauty_studio_theme_options[beauty-studio-footer-link-hover-color]', 'type' => 'color' ) ); /*Sidebar Widget Link color*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-sidebar-widget-link-color]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-sidebar-widget-link-color'], 'sanitize_callback' => 'sanitize_hex_color' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-sidebar-widget-link-color]', array( 'label' => esc_html__( 'Sidebar Widget Link Color', 'beauty-studio' ), 'section' => 'colors', 'settings' => 'beauty_studio_theme_options[beauty-studio-sidebar-widget-link-color]', 'type' => 'color' ) ); /*Sidebar Widget Link Hover color*/ $wp_customize->add_setting( 'beauty_studio_theme_options[beauty-studio-sidebar-widget-link-hover-color]', array( 'capability' => 'edit_theme_options', 'default' => $defaults['beauty-studio-sidebar-widget-link-hover-color'], 'sanitize_callback' => 'sanitize_hex_color' ) ); $wp_customize->add_control( 'beauty_studio_theme_options[beauty-studio-sidebar-widget-link-hover-color]', array( 'label' => esc_html__( 'Sidebar Widget Link Hover Color', 'beauty-studio' ), 'section' => 'colors', 'settings' => 'beauty_studio_theme_options[beauty-studio-sidebar-widget-link-hover-color]', 'type' => 'color' ) );