add_panel( 'theme_option_panel', array( 'title' => __( 'Theme Options', 'bookstore-exhibition' ), 'priority' => 100, 'capability' => 'edit_theme_options', ) ); // Typography Section. $bookstore_exhibition_font_array = array( '' => 'No Fonts', 'Abril Fatface' => 'Abril Fatface', 'Acme' => 'Acme', 'Anton' => 'Anton', 'Architects Daughter' => 'Architects Daughter', 'Arimo' => 'Arimo', 'Arsenal' => 'Arsenal', 'Arvo' => 'Arvo', 'Alegreya' => 'Alegreya', 'Alfa Slab One' => 'Alfa Slab One', 'Averia Serif Libre' => 'Averia Serif Libre', 'Bangers' => 'Bangers', 'Boogaloo' => 'Boogaloo', 'Bad Script' => 'Bad Script', 'Bitter' => 'Bitter', 'Bree Serif' => 'Bree Serif', 'BenchNine' => 'BenchNine', 'Cabin' => 'Cabin', 'Cardo' => 'Cardo', 'Courgette' => 'Courgette', 'Cherry Swash' => 'Cherry Swash', 'Cormorant Garamond' => 'Cormorant Garamond', 'Crimson Text' => 'Crimson Text', 'Cuprum' => 'Cuprum', 'Cookie' => 'Cookie', 'Chewy' => 'Chewy', 'Days One' => 'Days One', 'Dosis' => 'Dosis', 'Droid Sans' => 'Droid Sans', 'Economica' => 'Economica', 'Fredoka One' => 'Fredoka One', 'Fjalla One' => 'Fjalla One', 'Francois One' => 'Francois One', 'Frank Ruhl Libre' => 'Frank Ruhl Libre', 'Gloria Hallelujah' => 'Gloria Hallelujah', 'Great Vibes' => 'Great Vibes', 'Handlee' => 'Handlee', 'Hammersmith One' => 'Hammersmith One', 'Inconsolata' => 'Inconsolata', 'Indie Flower' => 'Indie Flower', 'IM Fell English SC' => 'IM Fell English SC', 'Julius Sans One' => 'Julius Sans One', 'Josefin Slab' => 'Josefin Slab', 'Josefin Sans' => 'Josefin Sans', 'Kanit' => 'Kanit', 'Lobster' => 'Lobster', 'Lato' => 'Lato', 'Lora' => 'Lora', 'Libre Baskerville' => 'Libre Baskerville', 'Lobster Two' => 'Lobster Two', 'Merriweather' => 'Merriweather', 'Monda' => 'Monda', 'Montserrat' => 'Montserrat', 'Muli' => 'Muli', 'Marck Script' => 'Marck Script', 'Noto Serif' => 'Noto Serif', 'Open Sans' => 'Open Sans', 'Overpass' => 'Overpass', 'Overpass Mono' => 'Overpass Mono', 'Oxygen' => 'Oxygen', 'Orbitron' => 'Orbitron', 'Patua One' => 'Patua One', 'Pacifico' => 'Pacifico', 'Padauk' => 'Padauk', 'Playball' => 'Playball', 'Playfair Display' => 'Playfair Display', 'PT Sans' => 'PT Sans', 'Philosopher' => 'Philosopher', 'Permanent Marker' => 'Permanent Marker', 'Poiret One' => 'Poiret One', 'Quicksand' => 'Quicksand', 'Quattrocento Sans' => 'Quattrocento Sans', 'Raleway' => 'Raleway', 'Rubik' => 'Rubik', 'Rokkitt' => 'Rokkitt', 'Russo One' => 'Russo One', 'Righteous' => 'Righteous', 'Slabo' => 'Slabo', 'Source Sans Pro' => 'Source Sans Pro', 'Shadows Into Light Two' => 'Shadows Into Light Two', 'Shadows Into Light' => 'Shadows Into Light', 'Sacramento' => 'Sacramento', 'Shrikhand' => 'Shrikhand', 'Tangerine' => 'Tangerine', 'Ubuntu' => 'Ubuntu', 'VT323' => 'VT323', 'Varela Round' => 'Varela Round', 'Vampiro One' => 'Vampiro One', 'Vollkorn' => 'Vollkorn', 'Volkhov' => 'Volkhov', 'Yanone Kaffeesatz' => 'Yanone Kaffeesatz' ); $wp_customize->add_section( 'bookstore_exhibition_typography', array( 'title' => __( 'Typography', 'bookstore-exhibition' ), 'priority' => 100, 'capability' => 'edit_theme_options', 'panel' => 'theme_option_panel', ) ); $wp_customize->add_setting( 'theme_options[bookstore_exhibition_body_font_family]', array( 'default' => $default['bookstore_exhibition_body_font_family'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bookstore_exhibition_sanitize_choices', ) ); $wp_customize->add_control( 'theme_options[bookstore_exhibition_body_font_family]', array( 'label' => __( 'Body font family', 'bookstore-exhibition' ), 'section' => 'bookstore_exhibition_typography', 'type' => 'select', 'choices' => $bookstore_exhibition_font_array, 'priority' => 100, ) ); $wp_customize->add_setting( 'theme_options[bookstore_exhibition_h1_font_family]', array( 'default' => $default['bookstore_exhibition_h1_font_family'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bookstore_exhibition_sanitize_choices', ) ); $wp_customize->add_control( 'theme_options[bookstore_exhibition_h1_font_family]', array( 'label' => __( 'H1 font family', 'bookstore-exhibition' ), 'section' => 'bookstore_exhibition_typography', 'type' => 'select', 'choices' => $bookstore_exhibition_font_array, 'priority' => 100, ) ); $wp_customize->add_setting( 'theme_options[bookstore_exhibition_h1_font_size]', array( 'default' => $default['bookstore_exhibition_h1_font_size'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'theme_options[bookstore_exhibition_h1_font_size]', array( 'label' => __( 'H1 Font Size', 'bookstore-exhibition' ), 'section' => 'bookstore_exhibition_typography', 'type' => 'text', 'priority' => 100, ) ); $wp_customize->add_setting( 'theme_options[bookstore_exhibition_h2_font_family]', array( 'default' => $default['bookstore_exhibition_h2_font_family'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bookstore_exhibition_sanitize_choices', ) ); $wp_customize->add_control( 'theme_options[bookstore_exhibition_h2_font_family]', array( 'label' => __( 'H2 font family', 'bookstore-exhibition' ), 'section' => 'bookstore_exhibition_typography', 'type' => 'select', 'choices' => $bookstore_exhibition_font_array, 'priority' => 100, ) ); $wp_customize->add_setting( 'theme_options[bookstore_exhibition_h2_font_size]', array( 'default' => $default['bookstore_exhibition_h2_font_size'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'theme_options[bookstore_exhibition_h2_font_size]', array( 'label' => __( 'H2 Font Size', 'bookstore-exhibition' ), 'section' => 'bookstore_exhibition_typography', 'type' => 'text', 'priority' => 100, ) ); $wp_customize->add_setting( 'theme_options[bookstore_exhibition_h3_font_family]', array( 'default' => $default['bookstore_exhibition_h3_font_family'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bookstore_exhibition_sanitize_choices', ) ); $wp_customize->add_control( 'theme_options[bookstore_exhibition_h3_font_family]', array( 'label' => __( 'H3 font family', 'bookstore-exhibition' ), 'section' => 'bookstore_exhibition_typography', 'type' => 'select', 'choices' => $bookstore_exhibition_font_array, 'priority' => 100, ) ); $wp_customize->add_setting( 'theme_options[bookstore_exhibition_h3_font_size]', array( 'default' => $default['bookstore_exhibition_h3_font_size'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'theme_options[bookstore_exhibition_h3_font_size]', array( 'label' => __( 'H3 Font Size', 'bookstore-exhibition' ), 'section' => 'bookstore_exhibition_typography', 'type' => 'text', 'priority' => 100, ) ); $wp_customize->add_setting( 'theme_options[bookstore_exhibition_h4_font_family]', array( 'default' => $default['bookstore_exhibition_h4_font_family'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bookstore_exhibition_sanitize_choices', ) ); $wp_customize->add_control( 'theme_options[bookstore_exhibition_h4_font_family]', array( 'label' => __( 'H4 font family', 'bookstore-exhibition' ), 'section' => 'bookstore_exhibition_typography', 'type' => 'select', 'choices' => $bookstore_exhibition_font_array, 'priority' => 100, ) ); $wp_customize->add_setting( 'theme_options[bookstore_exhibition_h4_font_size]', array( 'default' => $default['bookstore_exhibition_h4_font_size'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'theme_options[bookstore_exhibition_h4_font_size]', array( 'label' => __( 'H4 Font Size', 'bookstore-exhibition' ), 'section' => 'bookstore_exhibition_typography', 'type' => 'text', 'priority' => 100, ) ); $wp_customize->add_setting( 'theme_options[bookstore_exhibition_h5_font_family]', array( 'default' => $default['bookstore_exhibition_h5_font_family'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bookstore_exhibition_sanitize_choices', ) ); $wp_customize->add_control( 'theme_options[bookstore_exhibition_h5_font_family]', array( 'label' => __( 'H5 font family', 'bookstore-exhibition' ), 'section' => 'bookstore_exhibition_typography', 'type' => 'select', 'choices' => $bookstore_exhibition_font_array, 'priority' => 100, ) ); $wp_customize->add_setting( 'theme_options[bookstore_exhibition_h5_font_size]', array( 'default' => $default['bookstore_exhibition_h5_font_size'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'theme_options[bookstore_exhibition_h5_font_size]', array( 'label' => __( 'H5 Font Size', 'bookstore-exhibition' ), 'section' => 'bookstore_exhibition_typography', 'type' => 'text', 'priority' => 100, ) ); $wp_customize->add_setting( 'theme_options[bookstore_exhibition_h6_font_family]', array( 'default' => $default['bookstore_exhibition_h6_font_family'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bookstore_exhibition_sanitize_choices', ) ); $wp_customize->add_control( 'theme_options[bookstore_exhibition_h6_font_family]', array( 'label' => __( 'H6 font family', 'bookstore-exhibition' ), 'section' => 'bookstore_exhibition_typography', 'type' => 'select', 'choices' => $bookstore_exhibition_font_array, 'priority' => 100, ) ); $wp_customize->add_setting( 'theme_options[bookstore_exhibition_h6_font_size]', array( 'default' => $default['bookstore_exhibition_h6_font_size'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'theme_options[bookstore_exhibition_h6_font_size]', array( 'label' => __( 'H6 Font Size', 'bookstore-exhibition' ), 'section' => 'bookstore_exhibition_typography', 'type' => 'text', 'priority' => 100, ) ); // Site title And tagline Option $wp_customize->add_setting( 'theme_options[bookstore_exhibition_site_title_font_size]', array( 'default' => $default['bookstore_exhibition_site_title_font_size'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'theme_options[bookstore_exhibition_site_title_font_size]', array( 'label' => __( 'Site Title Font Size', 'bookstore-exhibition' ), 'section' => 'title_tagline', 'type' => 'text', 'priority' => 10, ) ); $wp_customize->add_setting( 'theme_options[bookstore_exhibition_site_tagline_font_size]', array( 'default' => $default['bookstore_exhibition_site_tagline_font_size'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'theme_options[bookstore_exhibition_site_tagline_font_size]', array( 'label' => __( 'Site Tagline Font Size', 'bookstore-exhibition' ), 'section' => 'title_tagline', 'type' => 'text', 'priority' => 10, ) ); $wp_customize->add_setting( 'theme_options[bookstore_exhibition_site_title_color]', array( 'default' => $default['bookstore_exhibition_site_title_color'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_hex_color', 'priority' => 100, )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'theme_options[bookstore_exhibition_site_title_color]', array( 'label' => __( 'Site Title Color', 'bookstore-exhibition' ), 'section' => 'title_tagline', 'settings' => 'theme_options[bookstore_exhibition_site_title_color]', 'priority' => 10, ))); // Premium features for site title $wp_customize->add_setting( 'bookstore_exhibition_logo_premium_features', array( 'default' => '', 'sanitize_callback' => 'wp_kses_post', ) ); $wp_customize->add_control( new WP_Customize_Control( $wp_customize, 'bookstore_exhibition_logo_premium_features', array( 'section' => 'title_tagline', 'priority' => 40, 'type' => 'hidden', 'label' => '', 'description' => wp_kses_post('

'. esc_html__( 'Unlock Premium Features', 'bookstore-exhibition' ) . '

'. esc_html__( 'Upgrade Now', 'bookstore-exhibition' ) . '
'), ) ) ); // Global Color $wp_customize->add_section( 'bookstore_exhibition_section_global_color', array( 'title' => __( 'Theme Color', 'bookstore-exhibition' ), 'priority' => 100, 'capability' => 'edit_theme_options', 'panel' => 'theme_option_panel', )); $wp_customize->add_setting( 'theme_options[bookstore_exhibition_first_color]', array( 'default' => $default['bookstore_exhibition_first_color'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'theme_options[bookstore_exhibition_first_color]', array( 'label' => __( 'First Highlight Color', 'bookstore-exhibition' ), 'description' => __( 'With a single click, you can change the highlight color of the inner page; use the Elementor editor for customization on the homepage.', 'bookstore-exhibition' ), 'section' => 'bookstore_exhibition_section_global_color', 'settings' => 'theme_options[bookstore_exhibition_first_color]', ))); $wp_customize->add_setting( 'theme_options[bookstore_exhibition_second_color]', array( 'default' => $default['bookstore_exhibition_second_color'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'theme_options[bookstore_exhibition_second_color]', array( 'label' => __( 'Second Highlight Color', 'bookstore-exhibition' ), 'section' => 'bookstore_exhibition_section_global_color', 'settings' => 'theme_options[bookstore_exhibition_second_color]', ))); $wp_customize->add_setting( 'theme_options[bookstore_exhibition_third_color]', array( 'default' => $default['bookstore_exhibition_third_color'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_hex_color', )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'theme_options[bookstore_exhibition_third_color]', array( 'label' => __( 'Third Highlight Color', 'bookstore-exhibition' ), 'section' => 'bookstore_exhibition_section_global_color', 'settings' => 'theme_options[bookstore_exhibition_third_color]', ))); // General Option. $wp_customize->add_section( 'section_general_option', array( 'title' => __( 'General Options', 'bookstore-exhibition' ), 'priority' => 100, 'capability' => 'edit_theme_options', 'panel' => 'theme_option_panel', ) ); //Wow Animation $wp_customize->add_setting( 'bookstore_exhibition_animation', array( 'default' => $default['bookstore_exhibition_animation'], 'sanitize_callback' => 'bookstore_exhibition_sanitize_checkbox', ) ); $wp_customize->add_control( 'bookstore_exhibition_animation', array( 'label' => esc_html__('Enable Animation', 'bookstore-exhibition'), 'section' => 'bookstore_exhibition_section_general_option', 'type' => 'checkbox', ) ); // Cursor Dot Outline $wp_customize->add_setting( 'theme_options[bookstore_exhibition_enable_cursor_dot_outline]', array( 'default' => $default['bookstore_exhibition_enable_cursor_dot_outline'], 'sanitize_callback' => 'bookstore_exhibition_sanitize_checkbox', ) ); $wp_customize->add_control( 'theme_options[bookstore_exhibition_enable_cursor_dot_outline]', array( 'label' => esc_html__('Enable Cursor Dot Outline', 'bookstore-exhibition'), 'section' => 'section_general_option', 'type' => 'checkbox', ) ); // Setting show scroll to top. $wp_customize->add_setting( 'theme_options[show_scroll_to_top]', array( 'default' => $default['show_scroll_to_top'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bookstore_exhibition_sanitize_checkbox', ) ); $wp_customize->add_control( 'theme_options[show_scroll_to_top]', array( 'label' => __( 'Show Scroll To Top', 'bookstore-exhibition' ), 'section' => 'section_general_option', 'type' => 'checkbox', 'priority' => 100, ) ); // Setting show Preloader. $wp_customize->add_setting( 'theme_options[show_preloader_setting]', array( 'default' => $default['show_preloader_setting'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bookstore_exhibition_sanitize_checkbox', ) ); $wp_customize->add_control( 'theme_options[show_preloader_setting]', array( 'label' => __( 'Show Preloader', 'bookstore-exhibition' ), 'section' => 'section_general_option', 'type' => 'checkbox', 'priority' => 100, ) ); // Setting show Sticky Header. $wp_customize->add_setting( 'theme_options[show_data_sticky_setting]', array( 'default' => $default['show_data_sticky_setting'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bookstore_exhibition_sanitize_checkbox', ) ); $wp_customize->add_control( 'theme_options[show_data_sticky_setting]', array( 'label' => __( 'Show Sticky Header', 'bookstore-exhibition' ), 'section' => 'section_general_option', 'type' => 'checkbox', 'priority' => 100, ) ); // Post Option. $wp_customize->add_section( 'section_post_option', array( 'title' => __( 'Post Options', 'bookstore-exhibition' ), 'priority' => 100, 'capability' => 'edit_theme_options', 'panel' => 'theme_option_panel', ) ); // Setting show Post date. $wp_customize->add_setting( 'theme_options[show_post_date_setting]', array( 'default' => $default['show_post_date_setting'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bookstore_exhibition_sanitize_checkbox', ) ); $wp_customize->add_control( 'theme_options[show_post_date_setting]', array( 'label' => __( 'Show Post Date', 'bookstore-exhibition' ), 'section' => 'section_post_option', 'type' => 'checkbox', 'priority' => 100, ) ); // Setting show Post Heading. $wp_customize->add_setting( 'theme_options[show_post_heading_setting]', array( 'default' => $default['show_post_heading_setting'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bookstore_exhibition_sanitize_checkbox', ) ); $wp_customize->add_control( 'theme_options[show_post_heading_setting]', array( 'label' => __( 'Show Post Heading', 'bookstore-exhibition' ), 'section' => 'section_post_option', 'type' => 'checkbox', 'priority' => 100, ) ); // Setting show Post Content. $wp_customize->add_setting( 'theme_options[show_post_content_setting]', array( 'default' => $default['show_post_content_setting'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bookstore_exhibition_sanitize_checkbox', ) ); $wp_customize->add_control( 'theme_options[show_post_content_setting]', array( 'label' => __( 'Show Post Full Content', 'bookstore-exhibition' ), 'section' => 'section_post_option', 'type' => 'checkbox', 'priority' => 100, ) ); // Setting show Post admin. $wp_customize->add_setting( 'theme_options[show_post_admin_setting]', array( 'default' => $default['show_post_admin_setting'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bookstore_exhibition_sanitize_checkbox', ) ); $wp_customize->add_control( 'theme_options[show_post_admin_setting]', array( 'label' => __( 'Show Post Admin', 'bookstore-exhibition' ), 'section' => 'section_post_option', 'type' => 'checkbox', 'priority' => 100, ) ); // Setting show Post Categories. $wp_customize->add_setting( 'theme_options[show_post_categories_setting]', array( 'default' => $default['show_post_categories_setting'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bookstore_exhibition_sanitize_checkbox', ) ); $wp_customize->add_control( 'theme_options[show_post_categories_setting]', array( 'label' => __( 'Show Post Categories', 'bookstore-exhibition' ), 'section' => 'section_post_option', 'type' => 'checkbox', 'priority' => 100, ) ); // Setting show Post Comments. $wp_customize->add_setting( 'theme_options[show_post_comments_setting]', array( 'default' => $default['show_post_comments_setting'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bookstore_exhibition_sanitize_checkbox', ) ); $wp_customize->add_control( 'theme_options[show_post_comments_setting]', array( 'label' => __( 'Show Post Comments', 'bookstore-exhibition' ), 'section' => 'section_post_option', 'type' => 'checkbox', 'priority' => 100, ) ); // Setting show Post Featured Image. $wp_customize->add_setting( 'theme_options[show_post_featured_image_setting]', array( 'default' => $default['show_post_featured_image_setting'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bookstore_exhibition_sanitize_checkbox', ) ); $wp_customize->add_control( 'theme_options[show_post_featured_image_setting]', array( 'label' => __( 'Show Post Featured Image', 'bookstore-exhibition' ), 'section' => 'section_post_option', 'type' => 'checkbox', 'priority' => 100, ) ); // Setting show Post Tags. $wp_customize->add_setting( 'theme_options[show_post_tags_setting]', array( 'default' => $default['show_post_tags_setting'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bookstore_exhibition_sanitize_checkbox', ) ); $wp_customize->add_control( 'theme_options[show_post_tags_setting]', array( 'label' => __( 'Show Post Tags', 'bookstore-exhibition' ), 'section' => 'section_post_option', 'type' => 'checkbox', 'priority' => 100, ) ); // Related post $wp_customize->add_section( 'bookstore_exhibition_related_post_option', array( 'title' => __( 'Related Post Options', 'bookstore-exhibition' ), 'priority' => 100, 'capability' => 'edit_theme_options', 'panel' => 'theme_option_panel', ) ); $wp_customize->add_setting( 'theme_options[bookstore_exhibition_enable_related_post]', array( 'default' => $default['bookstore_exhibition_enable_related_post'], 'sanitize_callback' => 'bookstore_exhibition_sanitize_checkbox', ) ); $wp_customize->add_control( 'theme_options[bookstore_exhibition_enable_related_post]', array( 'label' => esc_html__('Enable Related post', 'bookstore-exhibition'), 'section' => 'bookstore_exhibition_related_post_option', 'type' => 'checkbox', ) ); $wp_customize->add_setting( 'theme_options[bookstore_exhibition_enable_related_post_image]', array( 'default' => $default['bookstore_exhibition_enable_related_post_image'], 'sanitize_callback' => 'bookstore_exhibition_sanitize_checkbox', ) ); $wp_customize->add_control( 'theme_options[bookstore_exhibition_enable_related_post_image]', array( 'label' => esc_html__('Enable Related post Image', 'bookstore-exhibition'), 'section' => 'bookstore_exhibition_related_post_option', 'type' => 'checkbox', ) ); // Header Section. $wp_customize->add_section( 'section_header', array( 'title' => __( 'Header Options', 'bookstore-exhibition' ), 'priority' => 100, 'capability' => 'edit_theme_options', 'panel' => 'theme_option_panel', ) ); // Setting show_title. $wp_customize->add_setting( 'theme_options[show_title]', array( 'default' => $default['show_title'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bookstore_exhibition_sanitize_checkbox', ) ); $wp_customize->add_control( 'theme_options[show_title]', array( 'label' => __( 'Show Site Title', 'bookstore-exhibition' ), 'section' => 'section_header', 'type' => 'checkbox', 'priority' => 100, ) ); // Setting show_tagline. $wp_customize->add_setting( 'theme_options[show_tagline]', array( 'default' => $default['show_tagline'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bookstore_exhibition_sanitize_checkbox', ) ); $wp_customize->add_control( 'theme_options[show_tagline]', array( 'label' => __( 'Show Tagline', 'bookstore-exhibition' ), 'section' => 'section_header', 'type' => 'checkbox', 'priority' => 100, ) ); // Setting show_header_top. $wp_customize->add_setting( 'theme_options[show_header_top]', array( 'default' => $default['show_header_top'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bookstore_exhibition_sanitize_checkbox', ) ); $wp_customize->add_control( 'theme_options[show_header_top]', array( 'label' => __( 'Show Header Top', 'bookstore-exhibition' ), 'section' => 'section_header', 'type' => 'checkbox', 'priority' => 100, ) ); // Setting show_social_icon. $wp_customize->add_setting( 'theme_options[show_social_icon]', array( 'default' => $default['show_social_icon'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bookstore_exhibition_sanitize_checkbox', ) ); $wp_customize->add_control( 'theme_options[show_social_icon]', array( 'label' => __( 'Show Social Icon', 'bookstore-exhibition' ), 'section' => 'section_header', 'type' => 'checkbox', 'priority' => 100, ) ); // Setting announcement_text $wp_customize->add_setting( 'theme_options[discount_text]', array( 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'theme_options[discount_text]', array( 'label' => __( 'Add Announcement Text', 'bookstore-exhibition' ), 'section' => 'section_header', 'type' => 'text', 'priority' => 100, ) ); // Setting announcement link $wp_customize->add_setting( 'theme_options[discount_link]', array( 'capability' => 'edit_theme_options', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'theme_options[discount_link]', array( 'label' => __( 'Add Announcement Link', 'bookstore-exhibition' ), 'section' => 'section_header', 'type' => 'url', 'priority' => 100, ) ); // Setting facebook link $wp_customize->add_setting( 'theme_options[facebook_link]', array( 'capability' => 'edit_theme_options', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'theme_options[facebook_link]', array( 'label' => __( 'Add Facebook Link', 'bookstore-exhibition' ), 'section' => 'section_header', 'type' => 'url', 'priority' => 100, ) ); // Setting twitter link $wp_customize->add_setting( 'theme_options[twitter_link]', array( 'capability' => 'edit_theme_options', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'theme_options[twitter_link]', array( 'label' => __( 'Add Twitter Link', 'bookstore-exhibition' ), 'section' => 'section_header', 'type' => 'url', 'priority' => 100, ) ); // Setting watsapp link $wp_customize->add_setting( 'theme_options[watsapp_link]', array( 'capability' => 'edit_theme_options', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'theme_options[watsapp_link]', array( 'label' => __( 'Add Watsapp Link', 'bookstore-exhibition' ), 'section' => 'section_header', 'type' => 'url', 'priority' => 100, ) ); // Setting Instagram link $wp_customize->add_setting( 'theme_options[instagram_link]', array( 'capability' => 'edit_theme_options', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'theme_options[instagram_link]', array( 'label' => __( 'Add Instagram Link', 'bookstore-exhibition' ), 'section' => 'section_header', 'type' => 'url', 'priority' => 100, ) ); // Setting Linkdin link $wp_customize->add_setting( 'theme_options[linkdin_link]', array( 'capability' => 'edit_theme_options', 'sanitize_callback' => 'esc_url_raw', ) ); $wp_customize->add_control( 'theme_options[linkdin_link]', array( 'label' => __( 'Add Linkdin Link', 'bookstore-exhibition' ), 'section' => 'section_header', 'type' => 'url', 'priority' => 100, ) ); // Premium features box for header section $wp_customize->add_setting( 'bookstore_exhibition_header_premium_features', array( 'default' => '', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'wp_kses_post', ) ); $wp_customize->add_control( new WP_Customize_Control($wp_customize, 'bookstore_exhibition_header_premium_features', array( 'section' => 'section_header', 'priority' => 100, 'type' => 'hidden', 'label' => '', 'description' => wp_kses_post('

'. esc_html__( 'Unlock Premium Features', 'bookstore-exhibition' ) . '

'. esc_html__( 'Upgrade Now', 'bookstore-exhibition' ) . '
'), ) ) ); // Layout Section. $wp_customize->add_section( 'section_layout', array( 'title' => __( 'Layout Options', 'bookstore-exhibition' ), 'priority' => 100, 'capability' => 'edit_theme_options', 'panel' => 'theme_option_panel', ) ); // Setting global_layout. $wp_customize->add_setting( 'theme_options[global_layout]', array( 'default' => $default['global_layout'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bookstore_exhibition_sanitize_select', ) ); $wp_customize->add_control( 'theme_options[global_layout]', array( 'label' => __( 'Global Layout', 'bookstore-exhibition' ), 'section' => 'section_layout', 'type' => 'select', 'choices' => bookstore_exhibition_get_global_layout_options(), 'priority' => 100, ) ); // Setting archive_layout. $wp_customize->add_setting( 'theme_options[archive_layout]', array( 'default' => $default['archive_layout'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bookstore_exhibition_sanitize_select', ) ); $wp_customize->add_control( 'theme_options[archive_layout]', array( 'label' => __( 'Archive Layout', 'bookstore-exhibition' ), 'section' => 'section_layout', 'type' => 'select', 'choices' => bookstore_exhibition_get_archive_layout_options(), 'priority' => 100, ) ); // Setting archive_image. $wp_customize->add_setting( 'theme_options[archive_image]', array( 'default' => $default['archive_image'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bookstore_exhibition_sanitize_select', ) ); $wp_customize->add_control( 'theme_options[archive_image]', array( 'label' => __( 'Image in Archive', 'bookstore-exhibition' ), 'section' => 'section_layout', 'type' => 'select', 'choices' => bookstore_exhibition_get_image_sizes_options( true, array( 'disable', 'thumbnail', 'medium', 'large' ), false ), 'priority' => 100, ) ); // Setting archive_image_alignment. $wp_customize->add_setting( 'theme_options[archive_image_alignment]', array( 'default' => $default['archive_image_alignment'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bookstore_exhibition_sanitize_select', ) ); $wp_customize->add_control( 'theme_options[archive_image_alignment]', array( 'label' => __( 'Image Alignment in Archive', 'bookstore-exhibition' ), 'section' => 'section_layout', 'type' => 'select', 'choices' => bookstore_exhibition_get_image_alignment_options(), 'priority' => 100, 'active_callback' => 'bookstore_exhibition_is_image_in_archive_active', ) ); // Setting single_image. $wp_customize->add_setting( 'theme_options[single_image]', array( 'default' => $default['single_image'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bookstore_exhibition_sanitize_select', ) ); $wp_customize->add_control( 'theme_options[single_image]', array( 'label' => __( 'Image in Single Post/Page', 'bookstore-exhibition' ), 'section' => 'section_layout', 'type' => 'select', 'choices' => bookstore_exhibition_get_image_sizes_options( true, array( 'disable', 'large' ), false ), 'priority' => 100, ) ); // 404 Page Setting $wp_customize->add_section( 'bookstore_exhibition_404_page', array( 'title' => __( '404 Page Settings', 'bookstore-exhibition' ), 'priority' => 100, 'capability' => 'edit_theme_options', 'panel' => 'theme_option_panel', ) ); $wp_customize->add_setting( 'theme_options[bookstore_exhibition_404_page_title]', array( 'default' => $default['bookstore_exhibition_404_page_title'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'theme_options[bookstore_exhibition_404_page_title]', array( 'label' => __( 'Add Title', 'bookstore-exhibition' ), 'section' => 'bookstore_exhibition_404_page', 'type' => 'text', 'priority' => 100, ) ); $wp_customize->add_setting( 'theme_options[bookstore_exhibition_404_page_text]', array( 'default' => $default['bookstore_exhibition_404_page_text'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'theme_options[bookstore_exhibition_404_page_text]', array( 'label' => __( 'Add Text', 'bookstore-exhibition' ), 'section' => 'bookstore_exhibition_404_page', 'type' => 'text', 'priority' => 100, ) ); // No Results Page Setting $wp_customize->add_section( 'bookstore_exhibition_no_result_page', array( 'title' => __( 'No Results Page Settings', 'bookstore-exhibition' ), 'priority' => 100, 'capability' => 'edit_theme_options', 'panel' => 'theme_option_panel', ) ); $wp_customize->add_setting( 'theme_options[bookstore_exhibition_no_result_title]', array( 'default' => $default['bookstore_exhibition_no_result_title'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'theme_options[bookstore_exhibition_no_result_title]', array( 'label' => __( 'Add Title', 'bookstore-exhibition' ), 'section' => 'bookstore_exhibition_no_result_page', 'type' => 'text', 'priority' => 100, ) ); $wp_customize->add_setting( 'theme_options[bookstore_exhibition_no_result_text]', array( 'default' => $default['bookstore_exhibition_no_result_text'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_text_field', ) ); $wp_customize->add_control( 'theme_options[bookstore_exhibition_no_result_text]', array( 'label' => __( 'Add Text', 'bookstore-exhibition' ), 'section' => 'bookstore_exhibition_no_result_page', 'type' => 'text', 'priority' => 100, ) ); // Footer Section. $wp_customize->add_section( 'section_footer', array( 'title' => __( 'Footer Options', 'bookstore-exhibition' ), 'priority' => 100, 'capability' => 'edit_theme_options', 'panel' => 'theme_option_panel', ) ); // Setting copyright_text. $wp_customize->add_setting( 'theme_options[copyright_text]', array( 'default' => $default['copyright_text'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bookstore_exhibition_sanitize_textarea_content', 'transport' => 'postMessage', ) ); $wp_customize->add_control( 'theme_options[copyright_text]', array( 'label' => __( 'Copyright Text', 'bookstore-exhibition' ), 'section' => 'section_footer', 'type' => 'text', 'priority' => 100, ) ); $wp_customize->add_setting('theme_options[bookstore_exhibition_copyright_text_align]', array( 'capability' => 'edit_theme_options', 'default' => $default['bookstore_exhibition_copyright_text_align'], 'sanitize_callback' => 'bookstore_exhibition_sanitize_choices' )); $wp_customize->add_control('theme_options[bookstore_exhibition_copyright_text_align]',array( 'type' => 'radio', 'label' => __('Copyright Text Alignment','bookstore-exhibition'), 'section' => 'section_footer', 'priority' => 100, 'choices' => array( 'left' => __('Left Align','bookstore-exhibition'), 'right' => __('Right Align','bookstore-exhibition'), 'center' => __('Center Align','bookstore-exhibition'), ), ) ); $wp_customize->add_setting( 'theme_options[bookstore_exhibition_copyright_text_font_size]', array( 'capability' => 'edit_theme_options', 'default' => $default['bookstore_exhibition_copyright_text_font_size'], 'transport' => 'refresh', 'sanitize_callback' => 'absint', 'sanitize_js_callback' => 'absint', ) ); $wp_customize->add_control( 'theme_options[bookstore_exhibition_copyright_text_font_size]', array( 'label' => __( 'Copyright Font Size', 'bookstore-exhibition' ), 'section' => 'section_footer', 'type' => 'number', 'priority' => 100, ) ); $wp_customize->add_setting( 'theme_options[bookstore_exhibition_copyright_background_color]', array( 'default' => $default['bookstore_exhibition_copyright_background_color'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_hex_color', 'priority' => 100, )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'theme_options[bookstore_exhibition_copyright_background_color]', array( 'label' => __( 'Copyright background Color', 'bookstore-exhibition' ), 'section' => 'section_footer', 'settings' => 'theme_options[bookstore_exhibition_copyright_background_color]', 'priority' => 100, ))); $wp_customize->add_setting( 'theme_options[bookstore_exhibition_copyright_text_color]', array( 'default' => $default['bookstore_exhibition_copyright_text_color'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'sanitize_hex_color', 'priority' => 100, )); $wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'theme_options[bookstore_exhibition_copyright_text_color]', array( 'label' => __( 'Copyright Text Color', 'bookstore-exhibition' ), 'section' => 'section_footer', 'settings' => 'theme_options[bookstore_exhibition_copyright_text_color]', 'priority' => 100, ))); $wp_customize->add_setting( 'theme_options[bookstore_exhibition_copyright_sticky]', array( 'default' => $default['bookstore_exhibition_copyright_sticky'], 'capability' => 'edit_theme_options', 'sanitize_callback' => 'bookstore_exhibition_sanitize_checkbox', ) ); $wp_customize->add_control( 'theme_options[bookstore_exhibition_copyright_sticky]', array( 'label' => __( 'Show Sticky Copyright', 'bookstore-exhibition' ), 'section' => 'section_footer', 'type' => 'checkbox', 'priority' => 100, ) ); // Premium features box for footer section $wp_customize->add_setting( 'bookstore_exhibition_footer_premium_features', array( 'default' => '', 'capability' => 'edit_theme_options', 'sanitize_callback' => 'wp_kses_post', ) ); $wp_customize->add_control( new WP_Customize_Control( $wp_customize,'bookstore_exhibition_footer_premium_features', array( 'section' => 'section_footer', 'priority' => 100, 'type' => 'hidden', 'label' => '', 'description' => wp_kses_post('

'. esc_html__( 'Unlock Premium Features', 'bookstore-exhibition' ) . '

'. esc_html__( 'Upgrade Now', 'bookstore-exhibition' ) . '
'), ) ) );