add_section( 'board_games_theme_pagination_options', array( 'title' => esc_html__( 'Customizer Custom Settings', 'board-games' ), 'priority' => 10, 'capability' => 'edit_theme_options', 'panel' => 'board_games_theme_addons_panel', ) ); $wp_customize->add_setting('board_games_theme_loader', array( 'default' => $board_games_default['board_games_theme_loader'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'board_games_sanitize_checkbox', ) ); $wp_customize->add_control('board_games_theme_loader', array( 'label' => esc_html__('Enable Preloader', 'board-games'), 'section' => 'board_games_theme_pagination_options', 'type' => 'checkbox', ) ); // Add Pagination Enable/Disable option to Customizer $wp_customize->add_setting( 'board_games_enable_pagination', array( 'default' => true, // Default is enabled 'capability' => 'edit_theme_options', 'sanitize_callback' => 'board_games_sanitize_enable_pagination', // Sanitize the input ) ); // Add the control to the Customizer $wp_customize->add_control( 'board_games_enable_pagination', array( 'label' => esc_html__( 'Enable Pagination', 'board-games' ), 'section' => 'board_games_theme_pagination_options', // Add to the correct section 'type' => 'checkbox', ) ); $wp_customize->add_setting( 'board_games_theme_pagination_type', array( 'default' => 'numeric', // Set "numeric" as the default 'capability' => 'edit_theme_options', 'sanitize_callback' => 'board_games_sanitize_pagination_type', // Use our sanitize function ) ); $wp_customize->add_control( 'board_games_theme_pagination_type', array( 'label' => esc_html__( 'Pagination Style', 'board-games' ), 'section' => 'board_games_theme_pagination_options', 'type' => 'select', 'choices' => array( 'numeric' => esc_html__( 'Numeric (Page Numbers)', 'board-games' ), 'newer_older' => esc_html__( 'Newer/Older (Previous/Next)', 'board-games' ), // Renamed to "Newer/Older" ), ) ); $wp_customize->add_setting( 'board_games_theme_pagination_options_alignment', array( 'default' => $board_games_default['board_games_theme_pagination_options_alignment'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'board_games_sanitize_pagination_meta', ) ); $wp_customize->add_control( 'board_games_theme_pagination_options_alignment', array( 'label' => esc_html__( 'Pagination Alignment', 'board-games' ), 'section' => 'board_games_theme_pagination_options', 'type' => 'select', 'choices' => array( 'Center' => esc_html__( 'Center', 'board-games' ), 'Right' => esc_html__( 'Right', 'board-games' ), 'Left' => esc_html__( 'Left', 'board-games' ), ), ) ); $wp_customize->add_setting('board_games_theme_breadcrumb_enable', array( 'default' => $board_games_default['board_games_theme_breadcrumb_enable'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'board_games_sanitize_checkbox', ) ); $wp_customize->add_control('board_games_theme_breadcrumb_enable', array( 'label' => esc_html__('Enable Breadcrumb', 'board-games'), 'section' => 'board_games_theme_pagination_options', 'type' => 'checkbox', ) ); $wp_customize->add_setting( 'board_games_theme_breadcrumb_options_alignment', array( 'default' => $board_games_default['board_games_theme_breadcrumb_options_alignment'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'board_games_sanitize_pagination_meta', ) ); $wp_customize->add_control( 'board_games_theme_breadcrumb_options_alignment', array( 'label' => esc_html__( 'Breadcrumb Alignment', 'board-games' ), 'section' => 'board_games_theme_pagination_options', 'type' => 'select', 'choices' => array( 'Center' => esc_html__( 'Center', 'board-games' ), 'Right' => esc_html__( 'Right', 'board-games' ), 'Left' => esc_html__( 'Left', 'board-games' ), ), ) ); $wp_customize->add_setting('board_games_breadcrumb_font_size', array( 'default' => $board_games_default['board_games_breadcrumb_font_size'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'board_games_sanitize_number_range', ) ); $wp_customize->add_control('board_games_breadcrumb_font_size', array( 'label' => esc_html__('Breadcrumb Font Size', 'board-games'), 'section' => 'board_games_theme_pagination_options', 'type' => 'number', 'input_attrs' => array( 'min' => 1, 'max' => 45, 'step' => 1, ), ) );