add_section( 'aces_topbar_menu_section', array( 'title' => esc_html__( 'Menu', 'aces' ), 'description' => esc_html__( 'Select Topbar Menu From Menu Section', 'aces' ), 'priority' => 10, 'panel' => $panel, 'active_callback' => 'aces_topbar_enable', ) ); $wp_customize->add_setting( 'aces_topbar_menu_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_menu_text_color', array( 'label' => esc_html__( 'Text Color', 'aces' ), 'section' => 'aces_topbar_menu_section', 'settings' => 'aces_topbar_menu_text_color', 'priority' => 10, 'active_callback' => 'aces_topbar_enable', ) ) ); $wp_customize->add_setting( 'aces_topbar_menu_hover_text_color', array( 'transport' => 'postMessage', 'sanitize_callback' => 'aces_sanitize_color', ) ); $wp_customize->add_control( new Aces_Customizer_Color_Control( $wp_customize, 'aces_topbar_menu_hover_text_color', array( 'label' => esc_html__( 'Menu Hover', 'aces' ), 'section' => 'aces_topbar_menu_section', 'settings' => 'aces_topbar_menu_hover_text_color', 'priority' => 10, 'active_callback' => 'aces_topbar_enable', ) ) );