add_section( 'aces_color_and_background_styling' , array( 'title' => esc_html__( 'Color & Background', 'aces' ), 'priority' => 10, 'panel' => $panel, ) ); $wp_customize->add_setting( 'aces_color_background_heading', array( 'sanitize_callback' => 'wp_kses', ) ); $wp_customize->add_control( new Aces_Customizer_Heading_Control( $wp_customize, 'aces_color_background_heading', array( 'label' => esc_html__( 'Color', 'aces' ), 'section' => 'aces_color_and_background_styling', 'priority' => 1, ) ) ); $wp_customize->add_setting( 'aces_primary_color', array( 'transport' => 'postMessage', 'sanitize_callback' => 'aces_sanitize_color', ) ); $wp_customize->add_control( new Aces_Customizer_Color_Control( $wp_customize, 'aces_primary_color', array( 'label' => esc_html__( 'Primary', 'aces' ), 'section' => 'aces_color_and_background_styling', 'settings' => 'aces_primary_color', 'priority' => 1, ) ) ); $wp_customize->add_setting( 'aces_primary_link_color', array( 'transport' => 'postMessage', 'sanitize_callback' => 'aces_sanitize_color', ) ); $wp_customize->add_control( new Aces_Customizer_Color_Control( $wp_customize, 'aces_primary_link_color', array( 'label' => esc_html__( 'Primary Link', 'aces' ), 'section' => 'aces_color_and_background_styling', 'settings' => 'aces_primary_link_color', 'priority' => 1, ) ) ); $wp_customize->add_setting( 'aces_primary_link_hover_color', array( 'transport' => 'postMessage', 'sanitize_callback' => 'aces_sanitize_color', ) ); $wp_customize->add_control( new Aces_Customizer_Color_Control( $wp_customize, 'aces_primary_link_hover_color', array( 'label' => esc_html__( 'Hover:Primary Link', 'aces' ), 'section' => 'aces_color_and_background_styling', 'settings' => 'aces_primary_link_hover_color', 'priority' => 1, ) ) ); $wp_customize->add_setting( 'aces_color_background_b_heading', array( 'sanitize_callback' => 'wp_kses', ) ); $wp_customize->add_control( new Aces_Customizer_Heading_Control( $wp_customize, 'aces_color_background_b_heading', array( 'label' => esc_html__( 'Background', 'aces' ), 'section' => 'aces_color_and_background_styling', 'priority' => 1, ) ) ); ?>