-
Notifications
You must be signed in to change notification settings - Fork 10
/
functions.php
31 lines (27 loc) · 921 Bytes
/
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
<?php
/**
* Boutique engine room
*
* @package boutique
*/
/**
* Set the theme version number as a global variable
*/
$theme = wp_get_theme( 'boutique' );
$boutique_version = $theme['Version'];
$theme = wp_get_theme( 'storefront' );
$storefront_version = $theme['Version'];
/**
* Load the individual classes required by this theme
*/
require_once( 'inc/class-boutique.php' );
require_once( 'inc/class-boutique-customizer.php' );
require_once( 'inc/class-boutique-template.php' );
require_once( 'inc/class-boutique-integrations.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
*/