-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunctions.php
More file actions
29 lines (26 loc) · 921 Bytes
/
Copy pathfunctions.php
File metadata and controls
29 lines (26 loc) · 921 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
<?php
/**
* Starter Blocks — theme bootstrap.
*
* @package starter-blocks
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
// Theme module manifest. Each file is self-contained: comment out any
// require_once below to disable that module without removing the file.
$theme_inc = get_template_directory() . '/inc';
require_once $theme_inc . '/theme-setup.php';
require_once $theme_inc . '/block-styles.php';
require_once $theme_inc . '/blocks.php';
require_once $theme_inc . '/enqueue.php';
require_once $theme_inc . '/images.php';
require_once $theme_inc . '/attachments.php';
require_once $theme_inc . '/scroll-top.php';
require_once $theme_inc . '/branding.php';
require_once $theme_inc . '/cpt.php';
require_once $theme_inc . '/heartbeat.php';
require_once $theme_inc . '/security.php';
require_once $theme_inc . '/comments.php';
require_once $theme_inc . '/analytics.php';
require_once $theme_inc . '/bloat.php';