-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunctions.php
More file actions
40 lines (34 loc) · 849 Bytes
/
Copy pathfunctions.php
File metadata and controls
40 lines (34 loc) · 849 Bytes
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
<?php
/**
* Theme functions and definitions
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package themescaffold
*/
/**
* Utilities.
*/
require get_template_directory() . '/inc/utilities.php';
/**
* Theme setup.
*/
require get_template_directory() . '/inc/setup.php';
/**
* Functions which enhance the theme by hooking into WordPress.
*/
require get_template_directory() . '/inc/hooks.php';
/**
* Customizer additions.
*/
require get_template_directory() . '/inc/customizer.php';
/**
* Custom template tags for this theme.
*/
require get_template_directory() . '/inc/template-tags.php';
/**
* Custom blocks and styles.
*/
require get_template_directory() . '/inc/acf-blocks.php';
require get_template_directory() . '/inc/blocks.php';
require get_template_directory() . '/inc/block-styles.php';