forked from woocommerce/storefront
-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.php
38 lines (32 loc) · 1.01 KB
/
functions.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
<?php
/**
* Storefront engine room
*
* @package storefront
*/
/**
* Assign the Storefront version to a var
*/
$theme = wp_get_theme( 'storefront' );
$storefront_version = $theme['Version'];
/**
* Initialize all the things.
*/
require 'inc/class-storefront.php';
require 'inc/jetpack/class-storefront-jetpack.php';
require 'inc/customizer/class-storefront-customizer.php';
require 'inc/storefront-functions.php';
require 'inc/storefront-template-hooks.php';
require 'inc/storefront-template-functions.php';
if ( is_woocommerce_activated() ) {
require 'inc/woocommerce/class-storefront-woocommerce.php';
require 'inc/woocommerce/storefront-woocommerce-template-hooks.php';
require 'inc/woocommerce/storefront-woocommerce-template-functions.php';
}
if ( is_admin() ) {
require 'inc/admin/class-storefront-admin.php';
}
/**
* Note: Do not add any custom code here. Please use a custom plugin so that your customizations aren't lost during updates.
* https://github.com/woothemes/theme-customisations
*/