esc_html__( 'Primary Menu', 'bookstore-exhibition' ),
) );
/*
* This theme styles the visual editor to resemble the theme style,
* specifically font, colors, icons, and column width.
*/
$min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
add_editor_style( array( '/css/editor-style' . $min . '.css', bookstore_exhibition_fonts_url() ) );
/*
* Switch default core markup to output valid HTML5.
*/
add_theme_support( 'html5', array(
'comment-form',
'comment-list',
'gallery',
'caption',
) );
// Set up the WordPress core custom background feature.
add_theme_support( 'custom-background', apply_filters( 'bookstore_exhibition_custom_background_args', array(
'default-color' => 'f7fcfe',
) ) );
// Enable support for selective refresh of widgets in Customizer.
add_theme_support( 'customize-selective-refresh-widgets' );
// Enable support for custom logo.
add_theme_support( 'custom-logo', array(
'height' => 240,
'width' => 240,
'flex-height' => true,
) );
// Load default block styles.
add_theme_support( 'wp-block-styles' );
// Add support for responsive embeds.
add_theme_support( 'responsive-embeds' );
// Enable support for footer widgets.
add_theme_support( 'footer-widgets', 4 );
// woocommerce
add_theme_support( 'woocommerce' );
// Load Supports.
require_once get_template_directory() . '/inc/support.php';
// Add custom editor font sizes.
add_theme_support(
'editor-font-sizes',
array(
array(
'name' => __( 'Small', 'bookstore-exhibition' ),
'shortName' => __( 'S', 'bookstore-exhibition' ),
'size' => 13,
'slug' => 'small',
),
array(
'name' => __( 'Normal', 'bookstore-exhibition' ),
'shortName' => __( 'M', 'bookstore-exhibition' ),
'size' => 14,
'slug' => 'normal',
),
array(
'name' => __( 'Large', 'bookstore-exhibition' ),
'shortName' => __( 'L', 'bookstore-exhibition' ),
'size' => 30,
'slug' => 'large',
),
array(
'name' => __( 'Huge', 'bookstore-exhibition' ),
'shortName' => __( 'XL', 'bookstore-exhibition' ),
'size' => 36,
'slug' => 'huge',
),
)
);
// Editor color palette.
add_theme_support(
'editor-color-palette',
array(
array(
'name' => __( 'Black', 'bookstore-exhibition' ),
'slug' => 'black',
'color' => '#000',
),
array(
'name' => __( 'White', 'bookstore-exhibition' ),
'slug' => 'white',
'color' => '#ffffff',
),
array(
'name' => __( 'Gray', 'bookstore-exhibition' ),
'slug' => 'gray',
'color' => '#727272',
),
array(
'name' => __( 'Blue', 'bookstore-exhibition' ),
'slug' => 'blue',
'color' => '#ff8930',
),
array(
'name' => __( 'Navy Blue', 'bookstore-exhibition' ),
'slug' => 'navy-blue',
'color' => '#ff8930',
),
array(
'name' => __( 'Light Blue', 'bookstore-exhibition' ),
'slug' => 'light-blue',
'color' => '#f7fcfe',
),
array(
'name' => __( 'Orange', 'bookstore-exhibition' ),
'slug' => 'orange',
'color' => '#121212',
),
array(
'name' => __( 'Green', 'bookstore-exhibition' ),
'slug' => 'green',
'color' => '#77a464',
),
array(
'name' => __( 'Red', 'bookstore-exhibition' ),
'slug' => 'red',
'color' => '#e4572e',
),
array(
'name' => __( 'Yellow', 'bookstore-exhibition' ),
'slug' => 'yellow',
'color' => '#f4a024',
),
)
);
global $pagenow;
if ( is_admin() && $pagenow === 'themes.php' && (!isset($_GET['page']) || $_GET['page'] !== 'bookstore_exhibition_about')) {
add_action('admin_notices', 'bookstore_exhibition_activation_notice');
}
}
endif;
add_action( 'after_setup_theme', 'bookstore_exhibition_setup' );
function bookstore_exhibition_activation_notice() {
$bookstore_exhibition_meta = get_option( 'bookstore_exhibition_admin_notice' );
if (!$bookstore_exhibition_meta) {
echo '
';
}
}
/**
* Set the content width in pixels, based on the theme's design and stylesheet.
*
* Priority 0 to make it available to lower priority callbacks.
*
* @global int $content_width
*/
function bookstore_exhibition_content_width() {
$GLOBALS['content_width'] = apply_filters( 'bookstore_exhibition_content_width', 771 );
}
add_action( 'after_setup_theme', 'bookstore_exhibition_content_width', 0 );
/**
* Register widget area.
*/
function bookstore_exhibition_widgets_init() {
register_sidebar( array(
'name' => esc_html__( 'Primary Sidebar', 'bookstore-exhibition' ),
'id' => 'sidebar-1',
'description' => esc_html__( 'Add widgets here to appear in your Primary Sidebar.', 'bookstore-exhibition' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Secondary Sidebar', 'bookstore-exhibition' ),
'id' => 'sidebar-2',
'description' => esc_html__( 'Add widgets here to appear in your Secondary Sidebar.', 'bookstore-exhibition' ),
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => esc_html__( 'Secondary Sidebar 1', 'bookstore-exhibition' ),
'id' => 'sidebar-3',
'description' => esc_html__( 'Add widgets here to appear in your Secondary Sidebar 1.', 'bookstore-exhibition' ),
'before_widget' => '',
'before_title' => '',
) );
}
add_action( 'widgets_init', 'bookstore_exhibition_widgets_init' );
/**
* Register custom fonts.
*/
function bookstore_exhibition_fonts_url() {
$font_family = array(
'DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700',
'Padauk:wght@400;700',
'Mulish:ital,wght@0,200..1000;1,200..1000',
'Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700',
'Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900',
'Bad Script',
'Bebas Neue',
'Fjalla One',
'PT Sans:ital,wght@0,400;0,700;1,400;1,700',
'PT Serif:ital,wght@0,400;0,700;1,400;1,700',
'Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900',
'Roboto Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700',
'Alex Brush',
'Overpass:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900',
'Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900',
'Playball',
'Alegreya:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900',
'Julius Sans One',
'Arsenal:ital,wght@0,400;0,700;1,400;1,700',
'Slabo 13px',
'Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900',
'Overpass Mono:wght@300;400;500;600;700',
'Source Sans Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900',
'Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900',
'Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900',
'Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900',
'Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700',
'Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700',
'Cabin:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700',
'Arimo:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700',
'Playfair Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900',
'Quicksand:wght@300..700',
'Padauk:wght@400;700',
'Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000',
'Inconsolata:wght@200;300;400;500;600;700;800;900&family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000',
'Bitter:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Mulish:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000',
'Pacifico',
'Indie Flower',
'VT323',
'Dosis:wght@200;300;400;500;600;700;800',
'Frank Ruhl Libre:wght@300;400;500;700;900',
'Fjalla One',
'Figtree:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900',
'Oxygen:wght@300;400;700',
'Arvo:ital,wght@0,400;0,700;1,400;1,700',
'Noto Serif:ital,wght@0,400;0,700;1,400;1,700',
'Lobster',
'Crimson Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700',
'Yanone Kaffeesatz:wght@200;300;400;500;600;700',
'Anton',
'Libre Baskerville:ital,wght@0,400;0,700;1,400',
'Bree Serif',
'Gloria Hallelujah',
'Abril Fatface',
'Varela Round',
'Vampiro One',
'Shadows Into Light',
'Cuprum:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700',
'Rokkitt:wght@100;200;300;400;500;600;700;800;900',
'Vollkorn:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900',
'Francois One',
'Orbitron:wght@400;500;600;700;800;900',
'Patua One',
'Acme',
'Satisfy',
'Josefin Slab:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700',
'Quattrocento Sans:ital,wght@0,400;0,700;1,400;1,700',
'Architects Daughter',
'Russo One',
'Monda:wght@400;700',
'Righteous',
'Lobster Two:ital,wght@0,400;0,700;1,400;1,700',
'Hammersmith One',
'Courgette',
'Permanent Marke',
'Cherry Swash:wght@400;700',
'Cormorant Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700',
'Poiret One',
'BenchNine:wght@300;400;700',
'Economica:ital,wght@0,400;0,700;1,400;1,700',
'Handlee',
'Cardo:ital,wght@0,400;0,700;1,400',
'Alfa Slab One',
'Averia Serif Libre:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700',
'Cookie',
'Chewy',
'Great Vibes',
'Coming Soon',
'Philosopher:ital,wght@0,400;0,700;1,400;1,700',
'Days One',
'Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900',
'Shrikhand',
'Tangerine:wght@400;700',
'IM Fell English SC',
'Boogaloo',
'Bangers',
'Fredoka One',
'Volkhov:ital,wght@0,400;0,700;1,400;1,700',
'Shadows Into Light Two',
'Marck Script',
'Sacramento',
'Unica One',
'Dancing Script:wght@400;500;600;700',
'Exo 2:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900',
'Archivo:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900',
'Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900',
'DM Serif Display:ital@0;1',
'Open Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800'
);
$query_args = array(
'family' => rawurlencode(implode('|',$font_family)),
);
$font_url = add_query_arg($query_args,'//fonts.googleapis.com/css');
return $font_url;
$contents = wptt_get_webfont_url( esc_url_raw( $fonts_url ) );
}
/**
* Enqueue scripts and styles.
*/
function bookstore_exhibition_scripts() {
$min = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
wp_enqueue_style('fontawesome-css',get_template_directory_uri() . '/third-party/font-awesome/css/fontawesome-all.css',array(),'6.5.2');
$fonts_url = bookstore_exhibition_fonts_url();
if ( ! empty( $fonts_url ) ) {
wp_enqueue_style( 'bookstore-exhibition-google-fonts', $fonts_url, array(), null );
}
wp_enqueue_style( 'dashicons' );
// Theme stylesheet.
wp_enqueue_style( 'bookstore-exhibition-style', get_stylesheet_uri(), null, date( 'Ymd-Gis', filemtime( get_template_directory() . '/style.css' ) ) );
wp_enqueue_style( 'bookstore-exhibition-style', get_stylesheet_uri() );
wp_style_add_data( 'bookstore-exhibition-style', 'rtl', 'replace' );
if (get_theme_mod('bookstore_exhibition_animation', true) == true){
wp_enqueue_script( 'bookstore-exhibition-wow-js', get_template_directory_uri() . '/js/wow.js', array('jquery'),'' ,true );
wp_enqueue_style( 'bookstore-exhibition-animate-css', get_template_directory_uri().'/css/animate.css' );
}
require get_parent_theme_file_path( '/inc/color-palette/custom-color-control.php' );
wp_add_inline_style( 'bookstore-exhibition-style',$bookstore_exhibition_color_palette_css );
// Theme block stylesheet.
wp_enqueue_style( 'bookstore-exhibition-block-style', get_theme_file_uri( '/css/blocks.css' ), array( 'bookstore-exhibition-style' ), '20211006' );
wp_enqueue_style('bootstrap-style', get_template_directory_uri().'/css/bootstrap.css');
wp_enqueue_script( 'bookstore-exhibition-custom-js', get_template_directory_uri(). '/js/custom.js', array('jquery') ,'',true);
wp_enqueue_script( 'jquery-superfish', get_theme_file_uri( '/js/jquery.superfish.js' ), array( 'jquery' ), '2.1.2', true );
wp_enqueue_script('bootstrap-js', get_template_directory_uri().'/js/bootstrap.js', array('jquery'), '', true);
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
wp_enqueue_style( 'bookstore-exhibition-style', get_stylesheet_uri() );
// body
$bookstore_exhibition_body_font_family = bookstore_exhibition_get_option('bookstore_exhibition_body_font_family');
// H1
$bookstore_exhibition_h1_font_family = bookstore_exhibition_get_option('bookstore_exhibition_h1_font_family');
$bookstore_exhibition_h1_font_size = bookstore_exhibition_get_option('bookstore_exhibition_h1_font_size');
// H2
$bookstore_exhibition_h2_font_family = bookstore_exhibition_get_option('bookstore_exhibition_h2_font_family');
$bookstore_exhibition_h2_font_size = bookstore_exhibition_get_option('bookstore_exhibition_h2_font_size');
// H3
$bookstore_exhibition_h3_font_family = bookstore_exhibition_get_option('bookstore_exhibition_h3_font_family');
$bookstore_exhibition_h3_font_size = bookstore_exhibition_get_option('bookstore_exhibition_h3_font_size');
// H4
$bookstore_exhibition_h4_font_family = bookstore_exhibition_get_option('bookstore_exhibition_h4_font_family');
$bookstore_exhibition_h4_font_size = bookstore_exhibition_get_option('bookstore_exhibition_h4_font_size');
// H5
$bookstore_exhibition_h5_font_family = bookstore_exhibition_get_option('bookstore_exhibition_h5_font_family');
$bookstore_exhibition_h5_font_size = bookstore_exhibition_get_option('bookstore_exhibition_h5_font_size');
// H6
$bookstore_exhibition_h6_font_family = bookstore_exhibition_get_option('bookstore_exhibition_h6_font_family');
$bookstore_exhibition_h6_font_size = bookstore_exhibition_get_option('bookstore_exhibition_h6_font_size');
$bookstore_exhibition_custom_css = '
body{
font-family: '.esc_html($bookstore_exhibition_body_font_family).'!important;
}
h1{
font-family: '.esc_html($bookstore_exhibition_h1_font_family).'!important;
font-size: '.esc_html($bookstore_exhibition_h1_font_size).'px!important;
}
h2{
font-family: '.esc_html($bookstore_exhibition_h2_font_family).'!important;
font-size: '.esc_html($bookstore_exhibition_h2_font_size).'px!important;
}
h3{
font-family: '.esc_html($bookstore_exhibition_h3_font_family).'!important;
font-size: '.esc_html($bookstore_exhibition_h3_font_size).'px!important;
}
h4{
font-family: '.esc_html($bookstore_exhibition_h4_font_family).'!important;
font-size: '.esc_html($bookstore_exhibition_h4_font_size).'px!important;
}
h5{
font-family: '.esc_html($bookstore_exhibition_h5_font_family).'!important;
font-size: '.esc_html($bookstore_exhibition_h5_font_size).'px!important;
}
h6{
font-family: '.esc_html($bookstore_exhibition_h6_font_family).'!important;
font-size: '.esc_html($bookstore_exhibition_h6_font_size).'px!important;
}
';
wp_add_inline_style('bookstore-exhibition-style', $bookstore_exhibition_custom_css);
}
add_action( 'wp_enqueue_scripts', 'bookstore_exhibition_scripts' );
/*radio button sanitization*/
function bookstore_exhibition_sanitize_choices( $input, $setting ) {
global $wp_customize;
$control = $wp_customize->get_control( $setting->id );
if ( array_key_exists( $input, $control->choices ) ) {
return $input;
} else {
return $setting->default;
}
}
/**
* Enqueue styles for the block-based editor.
*
* @since Bookstore Exhibition
*/
function bookstore_exhibition_block_editor_styles() {
// Theme block stylesheet.
wp_enqueue_style( 'bookstore-exhibition-editor-style', get_template_directory_uri() . '/css/editor-blocks.css', array(), '20101208' );
$fonts_url = bookstore_exhibition_fonts_url();
if ( ! empty( $fonts_url ) ) {
wp_enqueue_style( 'bookstore-exhibition-google-fonts', $fonts_url, array(), null );
}
}
add_action( 'enqueue_block_editor_assets', 'bookstore_exhibition_block_editor_styles' );
define( 'IS_FREE_MIZAN_THEMES', 'bookstore-exhibition' );
function bookstore_exhibition_theme_setup() {
/**
* Load init.
*/
require_once get_template_directory() . '/inc/init.php';
/**
* Webfonts
*/
require_once get_template_directory() . '/inc/wptt-webfont-loader.php';
require_once get_template_directory() . '/inc/recommendations/tgm.php';
require_once get_template_directory() . '/inc/upsell/class-upgrade-pro.php';
require get_template_directory() . '/inc/getstart/getstart.php';
require get_template_directory() . '/inc/getstart/plugin-activation.php';
require_once get_template_directory() . '/inc/product-demo.php';
if ( class_exists( 'Whizzie' ) ) {
new Whizzie();
}
add_filter('mizan_importer_plugins_list', function ($plugins) {
$bookstore_exhibition_desired_order = ['woocommerce', 'yith-woocommerce-wishlist'];
foreach (['all', 'install', 'update', 'activate'] as $bookstore_exhibition_section) {
if (!isset($plugins[$bookstore_exhibition_section])) continue;
$bookstore_exhibition_reordered = [];
foreach ($bookstore_exhibition_desired_order as $slug) {
if (isset($plugins[$bookstore_exhibition_section][$slug])) {
$bookstore_exhibition_reordered[$slug] = $plugins[$bookstore_exhibition_section][$slug];
unset($plugins[$bookstore_exhibition_section][$slug]);
}
}
$plugins[$bookstore_exhibition_section] = $bookstore_exhibition_reordered + $plugins[$bookstore_exhibition_section];
}
return $plugins;
});
define('BOOKSTORE_EXHIBITION_DOCUMENTATION',__('https://preview.wpelemento.com/theme-documentation/bookstore-exhibition-free/','bookstore-exhibition'));
define('BOOKSTORE_EXHIBITION_SUPPORT',__('https://wordpress.org/support/theme/bookstore-exhibition/','bookstore-exhibition'));
define('BOOKSTORE_EXHIBITION_REVIEW',__('https://wordpress.org/support/theme/bookstore-exhibition/reviews/','bookstore-exhibition'));
define('BOOKSTORE_EXHIBITION_BUY_NOW',__('https://www.wpelemento.com/products/books-exhibition-wordpress-theme/','bookstore-exhibition'));
define('BOOKSTORE_EXHIBITION_LIVE_DEMO',__('https://preview.wpelemento.com/bookstore-exhibition/','bookstore-exhibition'));
define('BOOKSTORE_EXHIBITION_PRO_DOC',__('https://preview.wpelemento.com/theme-documentation/bookstore-exhibition-pro/','bookstore-exhibition'));
define('BOOKSTORE_EXHIBITION_THEME_BUNDLE',__('https://www.wpelemento.com/products/wordpress-theme-bundle','bookstore-exhibition'));
}
add_action('after_setup_theme', 'bookstore_exhibition_theme_setup');
function bookstore_exhibition_dismissed_notice() {
update_option( 'bookstore_exhibition_admin_notice', true );
}
add_action( 'wp_ajax_bookstore_exhibition_dismissed_notice', 'bookstore_exhibition_dismissed_notice' );
add_action('after_switch_theme', 'bookstore_exhibition_getstart_setup_options');
function bookstore_exhibition_getstart_setup_options () {
update_option('bookstore_exhibition_admin_notice', false );
}