forked from Codeinwp/neve
-
Notifications
You must be signed in to change notification settings - Fork 0
/
start.php
45 lines (38 loc) · 1.21 KB
/
start.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
/**
* Start file handles bootstrap.
*
* @package Neve
*/
/**
* Run theme functionality
*/
function neve_run() {
$vendor_file = trailingslashit( get_template_directory() ) . 'vendor/autoload.php';
if ( is_readable( $vendor_file ) ) {
require_once $vendor_file;
}
require_once 'autoloader.php';
$autoloader = new \Neve\Autoloader();
$autoloader->add_namespace( 'Neve', get_template_directory() . '/inc/' );
if ( defined( 'NEVE_PRO_SPL_ROOT' ) ) {
$autoloader->add_namespace( 'Neve_Pro', NEVE_PRO_SPL_ROOT );
}
$autoloader->register();
if ( class_exists( '\\Neve\\Core\\Core_Loader' ) ) {
new \Neve\Core\Core_Loader();
}
if ( class_exists( '\\Neve_Pro\\Core\\Loader' ) ) {
/**
* Legacy code, compatibility with old pro version.
*/
if ( is_file( NEVE_PRO_SPL_ROOT . 'modules/header_footer_grid/components/Yoast_Breadcrumbs.php' ) ) {
require_once NEVE_PRO_SPL_ROOT . 'modules/header_footer_grid/components/Yoast_Breadcrumbs.php';
}
if ( is_file( NEVE_PRO_SPL_ROOT . 'modules/header_footer_grid/components/Language_Switcher.php' ) ) {
require_once NEVE_PRO_SPL_ROOT . 'modules/header_footer_grid/components/Language_Switcher.php';
}
\Neve_Pro\Core\Loader::instance();
}
}
neve_run();