chore: complete M1.1 runtime QA and release packaging

This commit is contained in:
XShop
2026-09-13 19:04:41 +03:30
commit f11e1d650d
66 changed files with 3094 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
<?php
/**
* XShop Theme Bootstrap
*
* Thin loader – no business logic here. Each module exposes `xshop_*` setup functions.
*
* @package XShop
*/
declare(strict_types=1);
defined('ABSPATH') || exit;
define('XSHOP_VERSION', '1.0.0');
define('XSHOP_THEME_DIR', get_template_directory());
define('XSHOP_THEME_URI', get_template_directory_uri());
// Load order matters: helpers first.
require_once XSHOP_THEME_DIR . '/inc/helpers/sanitize.php';
require_once XSHOP_THEME_DIR . '/inc/helpers/template.php';
require_once XSHOP_THEME_DIR . '/inc/setup/theme-support.php';
require_once XSHOP_THEME_DIR . '/inc/setup/menus.php';
require_once XSHOP_THEME_DIR . '/inc/setup/sidebars.php';
require_once XSHOP_THEME_DIR . '/inc/setup/body-classes.php';
require_once XSHOP_THEME_DIR . '/inc/setup/assets.php';
require_once XSHOP_THEME_DIR . '/inc/woocommerce/setup.php';
require_once XSHOP_THEME_DIR . '/inc/compatibility/gutenberg.php';
require_once XSHOP_THEME_DIR . '/inc/compatibility/elementor.php';
require_once XSHOP_THEME_DIR . '/inc/customization/options.php';
require_once XSHOP_THEME_DIR . '/inc/performance/loader.php';