add_setting( $setting_id, array( 'default' => bgbn_get_default( $setting_id ), 'type' => 'theme_mod', 'sanitize_callback' => 'esc_html', 'theme_supports' => 'menus', 'transport' => 'postMessage' // Asynchronous preview ) ); $wp_customize->add_control( $control_prefix . $setting_id, array( 'settings' => $setting_id, 'section' => $section, 'label' => __( 'Mobile Menu Label', 'bgbn' ), 'type' => 'text', 'priority' => $priority->add() ) ); // Menu Label info $setting_id = 'navigation-mobile-lable-info'; $wp_customize->add_control( new bgbn_Customize_Misc_Control( $wp_customize, $control_prefix . $setting_id, array( 'section' => $section, 'type' => 'text', 'description' => __( 'Resize your browser window to preview the mobile menu label.', 'bgbn' ), 'priority' => $priority->add() ) ) ); } endif; add_action( 'customize_register', 'bgbn_customizer_navigation', 20 );