add_section('colors', array( 'title' => __('Colors', 'beauty-lab'), 'panel' => 'global_panel', 'priority' => 2, )); //---body text color---- $wp_customize->add_setting('bLab_body_txt_color', array( 'default' => '#515151', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control('bLab_body_txt_color_control', array( 'label' => __('Body Text Color', 'beauty-lab'), 'section' => 'colors', 'settings' => 'bLab_body_txt_color', 'type' => 'color', ) ); //----link color----- $wp_customize->add_setting('bLab_link_color', array( 'default' => '#d5275a', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control('bLab_link_color_control', array( 'label' => __('Link Color', 'beauty-lab'), 'section' => 'colors', 'settings' => 'bLab_link_color', 'type' => 'color', ) ); //----link hover color----- $wp_customize->add_setting('bLab_link_hvr_color', array( 'default' => '#720f83', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control('bLab_link_hvr_color_control', array( 'label' => __('Link Hover Color', 'beauty-lab'), 'section' => 'colors', 'settings' => 'bLab_link_hvr_color', 'type' => 'color', ) ); //----Heading color----- $wp_customize->add_setting('bLab_heading_color', array( 'default' => '#515151', 'transport' => 'refresh', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control('bLab_heading_color_control', array( 'label' => __('Heading Color', 'beauty-lab'), 'section' => 'colors', 'settings' => 'bLab_heading_color', 'type' => 'color', ) ); } add_action( 'customize_register', 'beauty_lab_customize_colors' ); ?>