add_section( 'blogwhite_color_options', array( 'title' => esc_html__( 'Color Options', 'blogwhite' ), 'priority' => 100, 'panel'=>'blogwhite_theme_options', ) ); // hover color setting $wp_customize->add_setting( 'blogwhite_hover_color', array( 'default' => '#2894ff', 'sanitize_callback' => 'sanitize_hex_color', 'transport' => 'refresh', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize,'blogwhite_hover_color',array( 'label' => esc_html__( 'hover color', 'blogwhite' ), 'section' => 'blogwhite_color_options', 'settings' => 'blogwhite_hover_color', ) ) ); // button text color setting $wp_customize->add_setting( 'blogwhite_btn_text_color', array( 'default' => '#fff', 'sanitize_callback' => 'sanitize_hex_color', 'transport' => 'refresh', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize,'blogwhite_btn_text_color',array( 'label' => esc_html__( 'Button text color', 'blogwhite' ), 'section' => 'blogwhite_color_options', 'settings' => 'blogwhite_btn_text_color', ) ) ); // button backgrond color setting $wp_customize->add_setting( 'blogwhite_btn_bg_color', array( 'default' => '#000', 'sanitize_callback' => 'sanitize_hex_color', 'transport' => 'refresh', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize,'blogwhite_btn_bg_color',array( 'label' => esc_html__( 'Button backgrond color', 'blogwhite' ), 'section' => 'blogwhite_color_options', 'settings' => 'blogwhite_btn_bg_color', ) ) );