/** * Astra functions and definitions * * @link https://developer.wordpress.org/themes/basics/theme-functions/ * * @package Astra * @since 1.0.0 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * Define Constants */ define( 'ASTRA_THEME_VERSION', '3.7.7' ); define( 'ASTRA_THEME_SETTINGS', 'astra-settings' ); define( 'ASTRA_THEME_DIR', trailingslashit( get_template_directory() ) ); define( 'ASTRA_THEME_URI', trailingslashit( esc_url( get_template_directory_uri() ) ) ); /** * Minimum Version requirement of the Astra Pro addon. * This constant will be used to display the notice asking user to update the Astra addon to the version defined below. */ define( 'ASTRA_EXT_MIN_VER', '3.6.3' ); /** * Setup helper functions of Astra. */ require_once ASTRA_THEME_DIR . 'inc/core/class-astra-theme-options.php'; require_once ASTRA_THEME_DIR . 'inc/core/class-theme-strings.php'; require_once ASTRA_THEME_DIR . 'inc/core/common-functions.php'; require_once ASTRA_THEME_DIR . 'inc/core/class-astra-icons.php'; /** * Update theme */ require_once ASTRA_THEME_DIR . 'inc/theme-update/class-astra-theme-update.php'; require_once ASTRA_THEME_DIR . 'inc/theme-update/astra-update-functions.php'; require_once ASTRA_THEME_DIR . 'inc/theme-update/class-astra-theme-background-updater.php'; require_once ASTRA_THEME_DIR . 'inc/theme-update/class-astra-pb-compatibility.php'; /** * Fonts Files */ require_once ASTRA_THEME_DIR . 'inc/customizer/class-astra-font-families.php'; if ( is_admin() ) { require_once ASTRA_THEME_DIR . 'inc/customizer/class-astra-fonts-data.php'; } require_once ASTRA_THEME_DIR . 'inc/lib/webfont/class-astra-webfont-loader.php'; require_once ASTRA_THEME_DIR . 'inc/customizer/class-astra-fonts.php'; require_once ASTRA_THEME_DIR . 'inc/dynamic-css/custom-menu-old-header.php'; require_once ASTRA_THEME_DIR . 'inc/dynamic-css/container-layouts.php'; require_once ASTRA_THEME_DIR . 'inc/dynamic-css/astra-icons.php'; require_once ASTRA_THEME_DIR . 'inc/dynamic-css/block-editor-compatibility.php'; require_once ASTRA_THEME_DIR . 'inc/core/class-astra-walker-page.php'; require_once ASTRA_THEME_DIR . 'inc/core/class-astra-enqueue-scripts.php'; require_once ASTRA_THEME_DIR . 'inc/core/class-gutenberg-editor-css.php'; require_once ASTRA_THEME_DIR . 'inc/dynamic-css/inline-on-mobile.php'; require_once ASTRA_THEME_DIR . 'inc/dynamic-css/content-background.php'; require_once ASTRA_THEME_DIR . 'inc/class-astra-dynamic-css.php'; require_once ASTRA_THEME_DIR . 'inc/class-astra-global-palette.php'; /** * Custom template tags for this theme. */ require_once ASTRA_THEME_DIR . 'inc/core/class-astra-attr.php'; require_once ASTRA_THEME_DIR . 'inc/template-tags.php'; require_once ASTRA_THEME_DIR . 'inc/widgets.php'; require_once ASTRA_THEME_DIR . 'inc/core/theme-hooks.php'; require_once ASTRA_THEME_DIR . 'inc/admin-functions.php'; require_once ASTRA_THEME_DIR . 'inc/core/sidebar-manager.php'; /** * Markup Functions */ require_once ASTRA_THEME_DIR . 'inc/markup-extras.php'; require_once ASTRA_THEME_DIR . 'inc/extras.php'; require_once ASTRA_THEME_DIR . 'inc/blog/blog-config.php'; require_once ASTRA_THEME_DIR . 'inc/blog/blog.php'; require_once ASTRA_THEME_DIR . 'inc/blog/single-blog.php'; /** * Markup Files */ require_once ASTRA_THEME_DIR . 'inc/template-parts.php'; require_once ASTRA_THEME_DIR . 'inc/class-astra-loop.php'; require_once ASTRA_THEME_DIR . 'inc/class-astra-mobile-header.php'; /** * Functions and definitions. */ require_once ASTRA_THEME_DIR . 'inc/class-astra-after-setup-theme.php'; // Required files. require_once ASTRA_THEME_DIR . 'inc/core/class-astra-admin-helper.php'; require_once ASTRA_THEME_DIR . 'inc/schema/class-astra-schema.php'; if ( is_admin() ) { /** * Admin Menu Settings */ require_once ASTRA_THEME_DIR . 'inc/core/class-astra-admin-settings.php'; require_once ASTRA_THEME_DIR . 'inc/lib/astra-notices/class-astra-notices.php'; } /** * Metabox additions. */ require_once ASTRA_THEME_DIR . 'inc/metabox/class-astra-meta-boxes.php'; require_once ASTRA_THEME_DIR . 'inc/metabox/class-astra-meta-box-operations.php'; /** * Customizer additions. */ require_once ASTRA_THEME_DIR . 'inc/customizer/class-astra-customizer.php'; /** * Astra Modules. */ require_once ASTRA_THEME_DIR . 'inc/modules/related-posts/class-astra-related-posts.php'; /** * Compatibility */ require_once ASTRA_THEME_DIR . 'inc/compatibility/class-astra-gutenberg.php'; require_once ASTRA_THEME_DIR . 'inc/compatibility/class-astra-jetpack.php'; require_once ASTRA_THEME_DIR . 'inc/compatibility/woocommerce/class-astra-woocommerce.php'; require_once ASTRA_THEME_DIR . 'inc/compatibility/edd/class-astra-edd.php'; require_once ASTRA_THEME_DIR . 'inc/compatibility/lifterlms/class-astra-lifterlms.php'; require_once ASTRA_THEME_DIR . 'inc/compatibility/learndash/class-astra-learndash.php'; require_once ASTRA_THEME_DIR . 'inc/compatibility/class-astra-beaver-builder.php'; require_once ASTRA_THEME_DIR . 'inc/compatibility/class-astra-bb-ultimate-addon.php'; require_once ASTRA_THEME_DIR . 'inc/compatibility/class-astra-contact-form-7.php'; require_once ASTRA_THEME_DIR . 'inc/compatibility/class-astra-visual-composer.php'; require_once ASTRA_THEME_DIR . 'inc/compatibility/class-astra-site-origin.php'; require_once ASTRA_THEME_DIR . 'inc/compatibility/class-astra-gravity-forms.php'; require_once ASTRA_THEME_DIR . 'inc/compatibility/class-astra-bne-flyout.php'; require_once ASTRA_THEME_DIR . 'inc/compatibility/class-astra-ubermeu.php'; require_once ASTRA_THEME_DIR . 'inc/compatibility/class-astra-divi-builder.php'; require_once ASTRA_THEME_DIR . 'inc/compatibility/class-astra-amp.php'; require_once ASTRA_THEME_DIR . 'inc/compatibility/class-astra-yoast-seo.php'; require_once ASTRA_THEME_DIR . 'inc/addons/transparent-header/class-astra-ext-transparent-header.php'; require_once ASTRA_THEME_DIR . 'inc/addons/breadcrumbs/class-astra-breadcrumbs.php'; require_once ASTRA_THEME_DIR . 'inc/addons/heading-colors/class-astra-heading-colors.php'; require_once ASTRA_THEME_DIR . 'inc/builder/class-astra-builder-loader.php'; // Elementor Compatibility requires PHP 5.4 for namespaces. if ( version_compare( PHP_VERSION, '5.4', '>=' ) ) { require_once ASTRA_THEME_DIR . 'inc/compatibility/class-astra-elementor.php'; require_once ASTRA_THEME_DIR . 'inc/compatibility/class-astra-elementor-pro.php'; require_once ASTRA_THEME_DIR . 'inc/compatibility/class-astra-web-stories.php'; } // Beaver Themer compatibility requires PHP 5.3 for anonymus functions. if ( version_compare( PHP_VERSION, '5.3', '>=' ) ) { require_once ASTRA_THEME_DIR . 'inc/compatibility/class-astra-beaver-themer.php'; } require_once ASTRA_THEME_DIR . 'inc/core/markup/class-astra-markup.php'; /** * Load deprecated functions */ require_once ASTRA_THEME_DIR . 'inc/core/deprecated/deprecated-filters.php'; require_once ASTRA_THEME_DIR . 'inc/core/deprecated/deprecated-hooks.php'; require_once ASTRA_THEME_DIR . 'inc/core/deprecated/deprecated-functions.php'; HERMANOS SALAZAR ABOGADOS ASOCIADOS https://validator.w3.org/feed/docs/rss2.html 0 Miten voittaa rahapelissä vaihe vaiheelta The evolution of gambling tracing the roots of human chance-taking Parhaat 200 Talletusbonus tarjoukset kokeneille kasinopelaajille 2026 Jak ograć kasyno bez weryfikacji: Twój przewodnik po zyskach z bonusów Kultura kasyn w różnych zakątkach świata jak hazard łączy ludzi Miten voittaa rahapeliaskareissa askel askeleelta null Jak si vybrat zahraniční casino co nejlépe pro vaše sázky Igre Za Pravi Denar 2026 Najboljse Ocene In Primerjave Estrategias básicas para principiantes en doradobet juegos de azar Gambling insights A complete overview of Pinco Casino strategies and tips Mastering gambling Essential tips and tricks for Casino Gates Of Olympus enthusiasts Understanding the psychology of gambling Insights from Crypto Casino Doge Popular game varieties in casinos What you need to know about Aviator options adobe generative ai 1 Famous casino hikayeleri Pinco casino ile unutulmaz anlar Unlock the ultimate casino experience with these proven strategies a16z generative ai Jogi kihívások a szerencsejáték világában Mit érdemes tudni A beginner’s guide to mastering casino games: Step-by-step strategies for success Welcome to the exciting world of casin Discover powerful tips: A step-by-step guide for beginners diving into the casino world Diving into the casino world can Unlock the ultimate casino experience: Your guide to registration and game access The world of online casinos offers an Unlock amazing casino bonuses: Your essential guide for 2023 In the dynamic world of online gambling, casinos continue t An honest review of popular casino games: pros and cons you need to know Casino gaming continues to captivate audiences Beginner’s guide to mastering the casino: Tips for first-time players Entering the world of casinos can be both exciting Discover the top casino bonuses of 2023: Maximize your winnings with proven promotions The world of online casinos has e Unlock the ultimate casino experience: A comprehensive guide for beginners Entering the world of casinos can be exhilara Unlock the ultimate casino experience: your comprehensive guide to registration and access In the evolving world of onli Unlock the amazing benefits of casino registration: A step-by-step guide for beginners Entering the exciting world of on Mobile casino apps: Quick access to the best games at your fingertips Mobile casino apps have revolutionized the way pla A proven review of popular casino games: Pros, cons, and winning strategies As the online gambling industry continues to The pros and cons of the top mobile casino apps: which is right for you Comprehensive review of online casinos: Weighing the pros and cons for you Online casinos have transformed the gambling Mobile casino apps: Discover the best options for easy access and play on the go The rise of mobile technology has trans Why choose mobile casinos Unlocking the ultimate casino experience: A beginner’s guide to registration and access Engaging in the world of online Why choose online casinos? Pros and cons of digital vs Discover the top casino games of 2023: Features that promise fun and rewards The world of casinos has evolved significan Honest casino reviews: Weighing the pros and cons of the latest gaming sites In the thriving landscape of online gaming, Unlock the secrets: A comprehensive guide to winning at online casinos Gambling has evolved over the years, transitionin Discover amazing casino bonuses: How to maximize your winnings in 2023 The world of online casinos is vibrant and full o Transform your luck: A comprehensive guide to casino bonuses in 2023 If you’re looking to elevate your gaming experience Unlock the secrets to casino success: a comprehensive guide for beginners Welcome to the exciting world of casinos! This Explore the top casinos of 2023: Pros, cons, and unbeatable features The world of online casinos continues to evolve dra Discover top casino bonuses: Your ultimate guide to maximizing promotions in 2023 Welcome to the exciting world of onlin Unlock amazing bonuses and promotions available in 2023: a casino fan’s dream The world of online casinos has evolved dr Why you should choose mobile casinos: Convenience and rewards at your fingertips As the world becomes increasingly digit Optimize your winnings: Exploring the best bonuses and promotions for 2023 In the dynamic world of online casinos, playe Unlocking the essentials: Your ultimate guide to casino registration and access In today’s digital age, the allure of on Master the art of winning: A beginner’s guide to casino gaming essentials Venturing into the world of casinos can be bot