forked from chrismcintosh/bolt-pro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.php
executable file
·38 lines (32 loc) · 1.4 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
/**
* Bolt Pro.
*
* This file adds functions to the Bolt Pro Theme.
*
* @package Bolt Pro
* @author Chris Mcintosh
* @license GPL-2.0+
* @link http://www.mcintosh.io
*/
//* Start the engine
include_once( get_template_directory() . '/lib/init.php' );
//* Child theme (do not remove)
define( 'CHILD_THEME_NAME', 'Bolt Pro' );
define( 'CHILD_THEME_URL', 'http://www.mcintosh.io' );
define( 'CHILD_THEME_VERSION', '1.0.0' );
//* Include Default Plugins Scripts and Styles
include get_stylesheet_directory() . '/lib/enqueue-scripts.php';
include get_stylesheet_directory() . '/lib/suggested-plugins.php';
//* Include Genesis Specific Modifications
include get_stylesheet_directory() . '/lib/genesis/theme-support.php';
include get_stylesheet_directory() . '/lib/genesis/inline-title-logo.php';
include get_stylesheet_directory() . '/lib/genesis/breadcrumbs.php';
include get_stylesheet_directory() . '/lib/genesis/blog-featured-image.php';
include get_stylesheet_directory() . '/lib/genesis/move-pagination.php';
//* Include Foundation Specific Modifcations
include get_stylesheet_directory() . '/lib/foundation/foundation-menu/index.php';
include get_stylesheet_directory() . '/lib/foundation/off-canvas-wrapper.php';
// include get_stylesheet_directory() . '/lib/foundation/off-canvas-example.php';
//* Include Woocommerce Modifications
include get_stylesheet_directory() . '/lib/woocommerce/index.php';