add_section( 'board_games_button_header_setting', array( 'title' => esc_html__( 'Header Settings', 'board-games' ), 'priority' => 10, 'capability' => 'edit_theme_options', 'panel' => 'board_games_theme_option_panel', ) ); $wp_customize->add_setting('board_games_sticky', array( 'default' => $board_games_default['board_games_sticky'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'board_games_sanitize_checkbox', ) ); $wp_customize->add_control('board_games_sticky', array( 'label' => esc_html__('Enable Sticky Header', 'board-games'), 'section' => 'board_games_button_header_setting', 'type' => 'checkbox', ) ); $wp_customize->add_setting('board_games_menu_font_size', array( 'default' => $board_games_default['board_games_menu_font_size'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'board_games_sanitize_number_range', ) ); $wp_customize->add_control('board_games_menu_font_size', array( 'label' => esc_html__('Menu Font Size', 'board-games'), 'section' => 'board_games_button_header_setting', 'type' => 'number', 'input_attrs' => array( 'min' => 1, 'max' => 30, 'step' => 1, ), ) ); $wp_customize->add_setting( 'board_games_menu_text_transform', array( 'default' => $board_games_default['board_games_menu_text_transform'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'board_games_sanitize_menu_transform', ) ); $wp_customize->add_control( 'board_games_menu_text_transform', array( 'label' => esc_html__( 'Menu Text Transform', 'board-games' ), 'section' => 'board_games_button_header_setting', 'type' => 'select', 'choices' => array( 'capitalize' => esc_html__( 'Capitalize', 'board-games' ), 'uppercase' => esc_html__( 'Uppercase', 'board-games' ), 'lowercase' => esc_html__( 'Lowercase', 'board-games' ), ), ) ); $wp_customize->add_setting( 'board_games_header_section_button_text', array( 'default' => $board_games_default['board_games_header_section_button_text'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'board_games_header_section_button_text', array( 'label' => esc_html__( 'Header Button Text', 'board-games' ), 'section' => 'board_games_button_header_setting', 'type' => 'text', ) ); $wp_customize->add_setting( 'board_games_header_section_button_url', array( 'default' => $board_games_default['board_games_header_section_button_url'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'board_games_header_section_button_url', array( 'label' => esc_html__( 'Header Button URL', 'board-games' ), 'section' => 'board_games_button_header_setting', 'type' => 'url', ) ); $wp_customize->add_setting('board_games_header_menus_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'board_games_header_menus_color', array( 'label' => __('Main Menu Color', 'board-games'), 'section' => 'board_games_button_header_setting', ))); $wp_customize->add_setting('board_games_header_menus_hover_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'board_games_header_menus_hover_color', array( 'label' => __('Main Menu Hover Color', 'board-games'), 'section' => 'board_games_button_header_setting', ))); $wp_customize->add_setting('board_games_header_submenus_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'board_games_header_submenus_color', array( 'label' => __('Submenu Color', 'board-games'), 'section' => 'board_games_button_header_setting', ))); $wp_customize->add_setting('board_games_header_submenus_hover_color', array( 'default' => '', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'board_games_header_submenus_hover_color', array( 'label' => __('Submenu Hover Color', 'board-games'), 'section' => 'board_games_button_header_setting', )));