This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$wp_customize->add_setting( 'core_color_setting_id', array( | |
'sanitize_callback' => 'themeslug_sanitize_hex_color', | |
) ); | |
$wp_customize->add_control( | |
new WP_Customize_Color_Control( $wp_customize, 'core_color_setting_id', | |
array( | |
'label' => __( 'Core Color Setting' ), | |
'description' => __( 'Select a color for something' ), | |
'section' => 'custom_section', // Add a default or your own section |