-
Notifications
You must be signed in to change notification settings - Fork 33
/
functions.php
37 lines (29 loc) · 970 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
32
33
34
35
36
37
<?php
/**
* Highwind functions and definitions
* @package highwind
* @since 1.0
*/
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
/**
* Load Theme Actions
*/
require_once( get_template_directory() . '/includes/theme-actions.php' );
/**
* Load Framework
*/
require_once( get_template_directory() . '/framework/highwind-init.php' );
/**
* Integrations
*/
if ( is_woocommerce_activated() ) {
require_once( get_template_directory() . '/includes/integrations/woocommerce/setup.php' );
require_once( get_template_directory() . '/includes/integrations/woocommerce/functions.php' );
require_once( get_template_directory() . '/includes/integrations/woocommerce/template.php' );
}
require_once( get_template_directory() . '/includes/integrations/jetpack/functions.php' );
/**
* Custom Functions
* Add any custom code below. To protect your changes during updates create a child theme instead.
* http://codex.wordpress.org/Child_Themes
*/