forked from aristath/shoestrap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfunctions.php
43 lines (36 loc) · 828 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
38
39
40
41
42
43
<?php
/**
* Shoestrap functions and definitions.
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package Shoestrap
*/
/**
* Load autoloader file.
*/
require get_template_directory() . '/inc/autoloader.php';
/**
* Init the theme
*/
new Shoestrap_Init();
/**
* Custom template tags for this theme.
*/
require get_template_directory() . '/inc/template-tags.php';
/**
* Custom functions that act independently of the theme templates.
*/
require get_template_directory() . '/inc/extras.php';
/**
* Customizer additions.
*/
require get_template_directory() . '/inc/customizer.php';
/**
* Load Jetpack compatibility file.
*/
require get_template_directory() . '/inc/jetpack.php';
/**
* Recommend installing Kirki.
*/
require get_template_directory() . '/inc/include-kirki.php';