*/ function boldwp_menu_options($wp_customize) { $wp_customize->add_section( 'boldwp_section_menu_options', array( 'title' => esc_html__( 'Menu Options', 'boldwp' ), 'panel' => 'boldwp_main_options_panel', 'priority' => 100 ) ); $wp_customize->add_setting( 'boldwp_options[primary_menu_text]', array( 'default' => esc_html__( 'Menu', 'boldwp' ), 'type' => 'option', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'boldwp_primary_menu_text_control', array( 'label' => esc_html__( 'Primary Menu Mobile Text', 'boldwp' ), 'section' => 'boldwp_section_menu_options', 'settings' => 'boldwp_options[primary_menu_text]', 'type' => 'text', ) ); $wp_customize->add_setting( 'boldwp_options[disable_primary_menu]', array( 'default' => false, 'type' => 'option', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'boldwp_sanitize_checkbox', ) ); $wp_customize->add_control( 'boldwp_disable_primary_menu_control', array( 'label' => esc_html__( 'Disable Primary Menu', 'boldwp' ), 'section' => 'boldwp_section_menu_options', 'settings' => 'boldwp_options[disable_primary_menu]', 'type' => 'checkbox', ) ); $wp_customize->add_setting( 'boldwp_options[enable_sticky_mobile_menu]', array( 'default' => false, 'type' => 'option', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'boldwp_sanitize_checkbox', ) ); $wp_customize->add_control( 'boldwp_enable_sticky_mobile_menu_control', array( 'label' => esc_html__( 'Enable Sticky Primary Menu on Small Screen', 'boldwp' ), 'section' => 'boldwp_section_menu_options', 'settings' => 'boldwp_options[enable_sticky_mobile_menu]', 'type' => 'checkbox', ) ); $wp_customize->add_setting( 'boldwp_options[secondary_menu_text]', array( 'default' => esc_html__( 'Menu', 'boldwp' ), 'type' => 'option', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'boldwp_secondary_menu_text_control', array( 'label' => esc_html__( 'Secondary Menu Mobile Text', 'boldwp' ), 'section' => 'boldwp_section_menu_options', 'settings' => 'boldwp_options[secondary_menu_text]', 'type' => 'text', ) ); $wp_customize->add_setting( 'boldwp_options[disable_secondary_menu]', array( 'default' => false, 'type' => 'option', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'boldwp_sanitize_checkbox', ) ); $wp_customize->add_control( 'boldwp_disable_secondary_menu_control', array( 'label' => esc_html__( 'Disable Secondary Menu', 'boldwp' ), 'section' => 'boldwp_section_menu_options', 'settings' => 'boldwp_options[disable_secondary_menu]', 'type' => 'checkbox', ) ); }