-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.php
35 lines (25 loc) · 933 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
<?php
// --------------------------------
// Required
// --------------------------------
// Environment Management
include_once('functions/environment.php');
// Enqueue Scripts
include_once('functions/wordpress/enqueue-scripts.php');
// Core Registrations
include_once('functions/core/custom-post-types.php');
include_once('functions/core/custom-taxonomies.php');
include_once('functions/core/custom-sidebars.php');
include_once('functions/core/custom-menus.php');
include_once('functions/core/custom-crops.php');
// Timber (Twig)
include_once('functions/timber/setup.php');
// --------------------------------
// Options
// --------------------------------
// Utility Functions
include_once('functions/wordpress/utility.php');
// Add Admin Menu Seperators
include_once('functions/wordpress/admin-sidebar-separators.php');
// Disable Post Type Support
// include_once('functions/wordpress/disable-post-type-support.php');