-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.php
executable file
·53 lines (42 loc) · 1.04 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
define( 'THEME_VERSION', '0.4.0' );
/**
* Load tweaks
*/
require get_template_directory() . '/inc/tweaks.php';
/**
* Load CSS and JavaScript Enqueues
*/
require get_template_directory() . '/inc/enqueues.php';
/**
* Load menus
*/
require get_template_directory() . '/inc/menus.php';
/**
* Load custom post types
*/
require get_template_directory() . '/inc/custom-post-types.php';
/**
* Load widgets
*/
require get_template_directory() . '/inc/widgets.php';
/**
* Load thumbnail support and sizes
*/
require get_template_directory() . '/inc/thumbnails.php';
/**
* Load shortcodes
*/
require get_template_directory() . '/inc/shortcodes.php';
/**
* Load ACF Options
*/
require get_template_directory() . '/inc/acf.php';
/**
* Load Responsive Media
*/
require get_template_directory() . '/inc/responsive-media.php';
/**
* Sett WooCommerce products to use a video in place of the image
*/
require get_template_directory() . '/inc/product-video.php';