add_section( 'aces_topbar_content_section', array( 'title' => esc_html__( 'Content', 'aces' ), 'priority' => 10, 'panel' => $panel, 'active_callback' => 'aces_topbar_enable', ) ); $wp_customize->add_setting( 'aces_topbar_content_text', array( 'transport' => 'postMessage', 'default' => esc_html__( 'Address: LA, USA ', 'aces' ), 'sanitize_callback' => 'wp_kses_post', ) ); $wp_customize->add_control( new Aces_Customizer_Textarea_Control( $wp_customize, 'aces_topbar_content_text', array( 'label' => esc_html__( 'Content ', 'aces' ), 'section' => 'aces_topbar_content_section', 'settings' => 'aces_topbar_content_text', 'priority' => 10, 'active_callback' => 'aces_topbar_enable', ) ) ); $wp_customize->add_setting( 'aces_topbar_contnt_text_color', array( 'transport' => 'postMessage', 'default' => '#969696', 'sanitize_callback' => 'aces_sanitize_color', ) ); $wp_customize->add_control( new Aces_Customizer_Color_Control( $wp_customize, 'aces_topbar_contnt_text_color', array( 'label' => esc_html__( 'Text Color', 'aces' ), 'section' => 'aces_topbar_content_section', 'settings' => 'aces_topbar_contnt_text_color', 'priority' => 10, 'active_callback' => 'aces_topbar_enable', ) ) ); $wp_customize->add_setting( 'aces_topbar_contnt_link_color', array( 'transport' => 'postMessage', 'default' => '#262626', 'sanitize_callback' => 'aces_sanitize_color', ) ); $wp_customize->add_control( new Aces_Customizer_Color_Control( $wp_customize, 'aces_topbar_contnt_link_color', array( 'label' => esc_html__( 'Link Color', 'aces' ), 'section' => 'aces_topbar_content_section', 'settings' => 'aces_topbar_contnt_link_color', 'priority' => 10, 'active_callback' => 'aces_topbar_enable', ) ) ); $wp_customize->add_setting( 'aces_topbar_contnt_link_hover_color', array( 'transport' => 'postMessage', 'sanitize_callback' => 'aces_sanitize_color', ) ); $wp_customize->add_control( new Aces_Customizer_Color_Control( $wp_customize, 'aces_topbar_contnt_link_hover_color', array( 'label' => esc_html__( 'Link Hover:Color', 'aces' ), 'section' => 'aces_topbar_content_section', 'settings' => 'aces_topbar_contnt_link_hover_color', 'priority' => 10, 'active_callback' => 'aces_topbar_enable', ) ) );