-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathfunctions.php
33 lines (29 loc) · 1.03 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
<?php
/**
* Storechild engine room
*
* @package storechild
*/
/**
* Set the theme version number as a global variable
*/
$theme = wp_get_theme( 'storechild' );
$storechild_version = $theme['Version'];
$theme = wp_get_theme( 'storefront' );
$storefront_version = $theme['Version'];
/**
* Load the individual classes required by this theme
*/
require_once( 'inc/class-storechild.php' );
require_once( 'inc/class-storechild-customizer.php' );
require_once( 'inc/class-storechild-integrations.php' );
require_once( 'inc/storechild-template-hooks.php' );
require_once( 'inc/storechild-template-functions.php' );
require_once( 'inc/plugged.php' );
/**
* Do not add custom code / snippets here.
* While Child Themes are generally recommended for customisations, in this case it is not
* wise. Modifying this file means that your changes will be lost when an automatic update
* of this theme is performed. Instead, add your customisations to a plugin such as
* https://github.com/woothemes/theme-customisations
*/