add_setting( 'attorney_color_settings', array ( 'default' => '#c7930d', 'sanitize_callback' => 'sanitize_hex_color', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'attorney_color_settings', array( 'label' => __( 'Theme Color Scheme', 'attorney' ), 'section' => 'colors', 'settings' => 'attorney_color_settings', ) ) ); $wp_customize->add_setting( 'attorney_menu_text_color_settings', array ( 'default' => '#000000', 'sanitize_callback' => 'sanitize_hex_color', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'attorney_menu_text_color_settings', array( 'label' => __( 'Menu Text Color', 'attorney' ), 'section' => 'colors', 'settings' => 'attorney_menu_text_color_settings', ) ) ); $wp_customize->add_setting( 'attorney_text_color_settings', array ( 'default' => '#000000', 'sanitize_callback' => 'sanitize_hex_color', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'attorney_text_color_settings', array( 'label' => __( 'General Text Color', 'attorney' ), 'section' => 'colors', 'settings' => 'attorney_text_color_settings', ) ) ); $wp_customize->add_setting( 'attorney_hero_text_color_settings', array ( 'default' => '#ffffff', 'sanitize_callback' => 'sanitize_hex_color', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'attorney_hero_text_color_settings', array( 'label' => __( 'Hero Text Color', 'attorney' ), 'section' => 'colors', 'settings' => 'attorney_hero_text_color_settings', ) ) ); $wp_customize->add_setting( 'attorney_social_color_settings', array ( 'default' => '#000', 'sanitize_callback' => 'sanitize_hex_color', ) ); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'attorney_social_color_settings', array( 'label' => __( 'Social Media Icon Color', 'attorney' ), 'section' => 'colors', 'settings' => 'attorney_social_color_settings', ) ) ); } endif; add_action('customize_register', 'attorney_theme_customize_color');