tag in the document head, and expect WordPress to
* provide it for us.
*/
add_theme_support( 'title-tag' );
/*
* Enable support for Post Thumbnails on posts and pages.
*
* @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/
*/
add_theme_support( 'post-thumbnails' );
add_image_size( 'botiga-extra-large', 1140, 9999 );
add_image_size( 'botiga-large', 920, 9999 );
add_image_size( 'botiga-big', 575, 9999 );
add_image_size( 'botiga-medium', 380, 9999 );
// This theme uses wp_nav_menu() in one location.
register_nav_menus(
array(
'primary' => esc_html__( 'Primary', 'botiga' ),
'secondary' => esc_html__( 'Secondary Menu', 'botiga' ),
)
);
/*
* Add post formats
*/
add_theme_support(
'post-formats',
array(
'aside',
'image',
'video',
'quote',
'link',
'status',
)
);
/*
* Switch default core markup for search form, comment form, and comments
* to output valid HTML5.
*/
add_theme_support(
'html5',
array(
'search-form',
'comment-form',
'comment-list',
'gallery',
'caption',
'style',
'script',
)
);
// Set up the WordPress core custom background feature.
add_theme_support(
'custom-background',
/**
* Hook 'botiga_custom_background_args'
*
* @since 1.0.0
*/
apply_filters(
'botiga_custom_background_args',
array(
'default-color' => 'ffffff',
'default-image' => '',
)
)
);
// Add theme support for selective refresh for widgets.
add_theme_support( 'customize-selective-refresh-widgets' );
/**
* Add support for core custom logo.
*
* @link https://codex.wordpress.org/Theme_Logo
*/
add_theme_support(
'custom-logo',
array(
'height' => 250,
'width' => 250,
'flex-width' => true,
'flex-height' => true,
)
);
/**
* Wide alignments
*
*/
add_theme_support( 'align-wide' );
/**
* Color palettes
*/
$selected_palette = get_theme_mod( 'color_palettes', 'palette1' );
$palettes = botiga_global_color_palettes();
$colors = array();
$custom_palette_toggle = get_theme_mod( 'custom_palette_toggle', 0 );
if( $custom_palette_toggle ) {
for ( $i = 0; $i < 8; $i++ ) {
$colors[] = array(
/* translators: %s: color palette */
'name' => sprintf( esc_html__( 'Color %s', 'botiga' ), ($i+1) ),
'slug' => 'color-' . $i,
'color' => get_theme_mod( 'custom_color' . ($i+1), '#212121' ),
);
}
} else {
for ( $i = 0; $i < 8; $i++ ) {
$colors[] = array(
/* translators: %s: color palette */
'name' => sprintf( esc_html__( 'Color %s', 'botiga' ), ($i+1) ),
'slug' => 'color-' . $i,
'color' => $palettes[$selected_palette][$i],
);
}
}
add_theme_support(
'editor-color-palette',
$colors
);
/**
* Editor font sizes
*/
add_theme_support(
'editor-font-sizes',
array(
array(
'name' => esc_html__( 'Small', 'botiga' ),
'shortName' => esc_html_x( 'S', 'Font size', 'botiga' ),
'size' => 14,
'slug' => 'small',
),
array(
'name' => esc_html__( 'Normal', 'botiga' ),
'shortName' => esc_html_x( 'N', 'Font size', 'botiga' ),
'size' => 16,
'slug' => 'normal',
),
array(
'name' => esc_html__( 'Large', 'botiga' ),
'shortName' => esc_html_x( 'L', 'Font size', 'botiga' ),
'size' => 18,
'slug' => 'large',
),
array(
'name' => esc_html__( 'Larger', 'botiga' ),
'shortName' => esc_html_x( 'L', 'Font size', 'botiga' ),
'size' => 24,
'slug' => 'larger',
),
array(
'name' => esc_html__( 'Extra large', 'botiga' ),
'shortName' => esc_html_x( 'XL', 'Font size', 'botiga' ),
'size' => 32,
'slug' => 'extra-large',
),
array(
'name' => esc_html__( 'Huge', 'botiga' ),
'shortName' => esc_html_x( 'XXL', 'Font size', 'botiga' ),
'size' => 48,
'slug' => 'huge',
),
array(
'name' => esc_html__( 'Gigantic', 'botiga' ),
'shortName' => esc_html_x( 'XXXL', 'Font size', 'botiga' ),
'size' => 64,
'slug' => 'gigantic',
),
)
);
/**
* Responsive embeds
*/
add_theme_support( 'responsive-embeds' );
/**
* Page templates with blocks
*/
add_theme_support( 'block-templates' );
}
endif;
add_action( 'after_setup_theme', 'botiga_setup' );
/**
* 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 botiga_content_width() {
/**
* Hook 'botiga_content_width'
*
* @since 1.0.0
*/
$GLOBALS['content_width'] = apply_filters( 'botiga_content_width', 1140 ); // phpcs:ignore WPThemeReview.CoreFunctionality.PrefixAllGlobals.NonPrefixedVariableFound
}
add_action( 'after_setup_theme', 'botiga_content_width', 0 );
/**
* Register widget area.
*
* @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar
*/
function botiga_widgets_init() {
register_sidebar(
array(
'name' => esc_html__( 'Sidebar', 'botiga' ),
'id' => 'sidebar-1',
'description' => esc_html__( 'Add widgets here.', 'botiga' ),
'before_widget' => '',
'before_title' => '
',
'before_sidebar' => '',
)
);
for ( $i = 1; $i <= 4; $i++ ) {
register_sidebar(
array(
/* translators: %s = footer widget area number */
'name' => sprintf( esc_html__( 'Footer %s', 'botiga' ), $i ),
'id' => 'footer-' . $i,
'description' => esc_html__( 'Add widgets here.', 'botiga' ),
'before_widget' => '',
'before_title' => '',
)
);
}
}
add_action( 'widgets_init', 'botiga_widgets_init' );
/**
* Enqueue scripts and styles.
*/
function botiga_scripts() {
$fonts_library = get_theme_mod( 'fonts_library', 'google' );
if( $fonts_library === 'google' ) {
wp_enqueue_style( 'botiga-google-fonts', botiga_google_fonts_url(), array(), botiga_google_fonts_version() );
} elseif( $fonts_library === 'custom' ) {
wp_enqueue_style( 'botiga-custom-google-fonts', botiga_custom_google_fonts_url(), array(), botiga_google_fonts_version() );
} else {
$kits = get_option( 'botiga_adobe_fonts_kits', array() );
foreach ( $kits as $kit_id => $kit_data ) {
if ( $kit_data['enable'] == false ) {
continue;
}
wp_enqueue_style( 'botiga-typekit-' . $kit_id, 'https://use.typekit.net/' . $kit_id . '.css', array(), BOTIGA_VERSION );
}
}
wp_enqueue_script( 'botiga-custom', get_template_directory_uri() . '/assets/js/custom.min.js', array(), BOTIGA_VERSION, true );
wp_localize_script( 'botiga-custom', 'botiga', array(
'ajaxurl' => admin_url( 'admin-ajax.php' ),
'i18n' => array(
'botiga_sharebox_copy_link' => __( 'Copy link', 'botiga' ),
'botiga_sharebox_copy_link_copied' => __( 'Copied!', 'botiga' ),
),
) );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
wp_register_script( 'botiga-carousel', get_template_directory_uri() . '/assets/js/botiga-carousel.min.js', NULL, BOTIGA_VERSION, true );
wp_register_script( 'botiga-popup', get_template_directory_uri() . '/assets/js/botiga-popup.min.js', NULL, BOTIGA_VERSION, true );
}
add_action( 'wp_enqueue_scripts', 'botiga_scripts', 10 );
/**
* Enqueue style css
* Ensure compatibility with Botiga Pro, since pro scripts are enqueued with order "10"
* We always need the custom.min.css as the last stylesheet enqueued
*
* 'botiga-custom-style' is registered at 'inc/classes/class-botiga-custom-css.php'
*/
function botiga_style_css() {
wp_enqueue_style( 'botiga-style-min', get_template_directory_uri() . '/assets/css/styles.min.css', array(), BOTIGA_VERSION );
wp_enqueue_style( 'botiga-custom-styles' );
wp_enqueue_style( 'botiga-style', get_stylesheet_uri(), array(), BOTIGA_VERSION );
}
add_action( 'wp_enqueue_scripts', 'botiga_style_css', 12 );
/**
* Enqueue admin scripts and styles.
*/
function botiga_admin_scripts() {
wp_register_script( 'botiga-select2', get_template_directory_uri() . '/assets/vendor/select2/select2.full.min.js', array( 'jquery' ), BOTIGA_VERSION, false );
wp_register_style( 'botiga-select2', get_template_directory_uri() . '/assets/vendor/select2/select2.min.css', array(), '4.0.6', 'all' );
wp_register_script( 'botiga-admin-modal', get_template_directory_uri() . '/assets/js/admin/botiga-admin-modal.min.js', array( 'jquery' ), BOTIGA_VERSION, false );
wp_register_style( 'botiga-admin-modal', get_template_directory_uri() . '/assets/css/admin/botiga-admin-modal.min.css', array(), BOTIGA_VERSION, 'all' );
wp_enqueue_script( 'botiga-admin-functions', get_template_directory_uri() . '/assets/js/admin-functions.min.js', array( 'jquery' ), BOTIGA_VERSION, true );
wp_localize_script( 'botiga-admin-functions', 'botigaadm', array(
'hfUpdate' => array(
'confirmMessage' => __( 'Are you sure you want to upgrade your header?', 'botiga' ),
'errorMessage' => __( 'It was not possible complete the request, please reload the page and try again.', 'botiga' ),
),
'hfUpdateDimiss' => array(
'confirmMessage' => __( 'Are you sure you want to dismiss this notice?', 'botiga' ),
'errorMessage' => __( 'It was not possible complete the request, please reload the page and try again.', 'botiga' ),
),
) );
}
add_action( 'admin_enqueue_scripts', 'botiga_admin_scripts' );
/**
* Page Templates.
*/
function botiga_remove_page_templates( $page_templates ) {
if( ! defined( 'BOTIGA_PRO_VERSION' ) ) {
unset( $page_templates['page-templates/template-wishlist.php'] );
}
return $page_templates;
}
add_filter( 'theme_page_templates', 'botiga_remove_page_templates' );
/**
* Helper functions.
*/
require get_template_directory() . '/inc/helpers.php';
/**
* Deactivate Elementor Wizard.
*/
function botiga_deactivate_ele_onboarding() {
update_option( 'elementor_onboarded', true );
}
add_action( 'after_switch_theme', 'botiga_deactivate_ele_onboarding' );
/**
* Modules Class.
*/
require get_template_directory() . '/inc/modules/class-botiga-modules.php';
/**
* Gutenberg editor.
*/
require get_template_directory() . '/inc/editor.php';
/**
* Implement the Custom Header feature.
*/
require get_template_directory() . '/inc/custom-header.php';
/**
* Custom template tags for this theme.
*/
require get_template_directory() . '/inc/template-tags.php';
/**
* Functions which enhance the theme by hooking into WordPress.
*/
require get_template_directory() . '/inc/template-functions.php';
/**
* Customizer additions.
*/
require get_template_directory() . '/inc/customizer.php';
/**
* Load Jetpack compatibility file.
*/
if ( defined( 'JETPACK__VERSION' ) ) {
require get_template_directory() . '/inc/plugins/jetpack/jetpack.php';
}
/**
* Load Max Mega Menu compatibility file.
*/
if ( class_exists( 'Mega_Menu' ) ) {
require get_template_directory() . '/inc/plugins/max-mega-menu/max-mega-menu.php';
}
/**
* Load WooCommerce compatibility file.
*/
if ( class_exists( 'WooCommerce' ) ) {
require get_template_directory() . '/inc/plugins/woocommerce/woocommerce.php';
}
/**
* Load Merchant compatibility file.
*/
if ( class_exists( 'Merchant' ) ) {
require get_template_directory() . '/inc/plugins/merchant/callbacks.php';
require get_template_directory() . '/inc/plugins/merchant/class-merchant-overlaping-features.php';
require get_template_directory() . '/inc/plugins/merchant/class-merchant-overlaping-features-modal.php';
require get_template_directory() . '/inc/plugins/merchant/class-merchant-single-product-elements.php';
require get_template_directory() . '/inc/plugins/merchant/class-merchant-quick-view-elements.php';
}
/**
* Load WooCommerce Brands compatibility file.
*/
if ( class_exists( 'WooCommerce' ) && class_exists( 'WC_Brands' ) ) {
require get_template_directory() . '/inc/plugins/woocommerce-brands/woocommerce-brands.php';
}
/**
* Load Elementor compatibility file.
*/
if( defined( 'ELEMENTOR_VERSION' ) ) {
require get_template_directory() . '/inc/plugins/elementor/elementor.php';
}
/**
* Load Elementor Pro compatibility file.
*/
if( defined( 'ELEMENTOR_PRO_VERSION' ) ) {
require get_template_directory() . '/inc/plugins/elementor-pro/elementor-pro.php';
}
/**
* Load Dokan compatibility file.
*/
if( defined( 'DOKAN_PLUGIN_VERSION' ) && class_exists( 'Woocommerce' ) ) {
require get_template_directory() . '/inc/plugins/dokan/dokan.php';
}
/**
* Load WC Vendors compatibility file.
*/
if( class_exists( 'WC_Vendors' ) && class_exists( 'Woocommerce' ) ) {
require get_template_directory() . '/inc/plugins/wc-vendors/wc-vendors.php';
}
/**
* Load WC Germanized compatibility file.
*/
if( class_exists( 'WooCommerce_Germanized' ) && class_exists( 'Woocommerce' ) ) {
require get_template_directory() . '/inc/plugins/wc-germanized/class-wc-germanized.php';
}
/**
* Load WC Germanized EU VAT Compilance compatibility file.
*/
if( class_exists( 'WC_EU_VAT_Compliance' ) && class_exists( 'Woocommerce' ) ) {
require get_template_directory() . '/inc/plugins/woocommerce-eu-vat-compliance-premium/class-woocommerce-eu-vat-compliance-premium.php';
}
/**
* Upsell.
*/
if( ! defined( 'BOTIGA_PRO_VERSION' ) ) {
require get_template_directory() . '/inc/customizer/upsell/class-customize.php';
}
/**
* Theme classes.
*/
require get_template_directory() . '/inc/classes/class-botiga-topbar.php';
require get_template_directory() . '/inc/classes/class-botiga-header.php';
require get_template_directory() . '/inc/classes/class-botiga-footer.php';
require get_template_directory() . '/inc/classes/class-botiga-posts-archive.php';
require get_template_directory() . '/inc/classes/class-botiga-svg-icons.php';
require get_template_directory() . '/inc/classes/class-botiga-metabox.php';
require get_template_directory() . '/inc/classes/class-botiga-custom-css.php';
/**
* Theme ajax callbacks.
*/
require get_template_directory() . '/inc/ajax-callbacks.php';
/**
* Legacy composer autoload.
* Purpose is autoload only needed kirki-framework controls classes.
*/
require_once get_parent_theme_file_path( 'vendor-legacy/autoload.php' );
/**
* Theme dashboard.
*/
require get_template_directory() . '/inc/dashboard/class-dashboard.php';
/**
* Theme dashboard settings.
*/
require get_template_directory() . '/inc/dashboard/class-dashboard-settings.php';
/**
* Modules.
*/
require get_template_directory() . '/inc/modules/adobe-typekit/adobe-typekit.php';
require get_template_directory() . '/inc/modules/schema-markup/schema-markup.php';
if( defined( 'BOTIGA_PRO_VERSION' ) ) {
if( version_compare( BOTIGA_PRO_VERSION, '1.1.0', '>=' ) ) {
require get_template_directory() . '/inc/modules/hf-builder/class-header-footer-builder.php';
} else {
$botiga_all_modules = get_option( 'botiga-modules' );
$botiga_all_modules = ( is_array( $botiga_all_modules ) ) ? $botiga_all_modules : (array) $botiga_all_modules;
update_option( 'botiga-modules', array_merge( $botiga_all_modules, array( 'hf-builder' => false ) ) );
add_action( 'admin_notices', function(){ ?>
' . esc_html__( 'Plugins', 'botiga' ) . ''
);
?>
=' ) ) {
return get_template_part( $slug, $name, $args );
} else {
extract($args);
$templates = array();
$name = (string) $name;
if ( '' !== $name ) {
$templates[] = "{$slug}-{$name}.php";
}
$templates[] = "{$slug}.php";
return include( locate_template($templates) );
}
}