add_section( 'theme_style' , array( 'title' => esc_html__('Theme Style Settings', 'bizhunt'), 'priority' => 110, ) ); // enable / disable custom color settings $wp_customize->add_setting('custom_color_enable', array( 'capability' => 'edit_theme_options', 'default' => false, 'sanitize_callback' => 'bizhunt_sanitize_checkbox', )); $wp_customize->add_control('custom_color_enable',array( 'type' => 'checkbox', 'label' => esc_html__('Enable custom color skin','bizhunt'), 'section' => 'theme_style', ) ); // link color settings $wp_customize->add_setting('link_color', array( 'capability' => 'edit_theme_options', 'default' => '#6974ea', 'sanitize_callback' => 'sanitize_hex_color' )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize,'link_color', array( 'label' => esc_html__( 'Skin Color', 'bizhunt' ), 'section' => 'theme_style', 'settings' => 'link_color', ) ) ); } add_action( 'customize_register', 'bizhunt_custom_color' );