add_setting( 'ananya_accent_color', array( 'default' => '#044e92', 'sanitize_callback' => 'sanitize_hex_color', 'transport' => 'postMessage', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'ananya_accent_color', array( 'label' => __( 'Accent Color', 'ananya' ), 'section' => 'colors', 'settings' => 'ananya_accent_color', 'description' => __( 'Applied to some of the elements.', 'ananya' ), ) ) ); } add_action( 'customize_register', 'ananya_custom_color_section_setup' );