template ) : wp_get_theme() )->version ); define( 'ALPHA_THEME_URL', wp_get_theme()->get( 'ThemeURI' ) ); define( 'ALPHA_GAP', '15px' ); // Define script debug defined( 'ALPHA_JS_SUFFIX' ) || ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? define( 'ALPHA_JS_SUFFIX', '.js' ) : define( 'ALPHA_JS_SUFFIX', '.min.js' ) ); // Defines core name and slug if not defined. defined( 'ALPHA_CORE_NAME' ) || define( 'ALPHA_CORE_NAME', 'Alpus Core' ); defined( 'ALPHA_CORE_SLUG' ) || define( 'ALPHA_CORE_SLUG', 'alpus-core' ); defined( 'ALPHA_CORE_PLUGIN_URI' ) || define( 'ALPHA_CORE_PLUGIN_URI', 'alpus-core/alpus-core.php' ); // Defines pro name and slug if not defined. defined( 'ALPHA_PRO_NAME' ) || define( 'ALPHA_PRO_NAME', 'Alpus Pro' ); defined( 'ALPHA_PRO_SLUG' ) || define( 'ALPHA_PRO_SLUG', 'alpus-pro' ); defined( 'ALPHA_PRO_PLUGIN_URI' ) || define( 'ALPHA_PRO_PLUGIN_URI', 'alpus-pro/alpus-pro.php' ); // Define Constants define( 'ALPHA_PATH', get_parent_theme_file_path() ); // Template directory path define( 'ALPHA_URI', get_parent_theme_file_uri() ); // Template directory uri define( 'ALPHA_ASSETS', ALPHA_URI . '/assets' ); // Template assets directory uri define( 'ALPHA_CSS', ALPHA_ASSETS . '/css' ); // Template css uri define( 'ALPHA_JS', ALPHA_ASSETS . '/js' ); // Template javascript uri define( 'ALPHA_PART', 'templates' ); // Template parts define( 'ALPHA_ADMIN_PAGE', 'admin.php?page=' ); // Admin page uri defined( 'ALPHA_SERVER_URI' ) || define( 'ALPHA_SERVER_URI', 'https://alpustheme.com/' ); // Server uri if ( ! class_exists( 'Alpha_Base' ) ) { require_once ALPHA_PATH . '/framework/class-alpha-base.php'; } // Theme Config require_once ALPHA_PATH . '/inc/config-functions.php'; // FrameWork Config require_once ALPHA_PATH . '/framework/config.php'; // Theme EntryPoint require_once ALPHA_PATH . '/inc/theme-setup.php'; // FrameWork EntryPoint require_once alpha_framework_path( ALPHA_FRAMEWORK_PATH . '/init.php' );