-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunctions.php
More file actions
32 lines (24 loc) · 924 Bytes
/
functions.php
File metadata and controls
32 lines (24 loc) · 924 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
<?php
//======================================================================
// THEME FUNCTIONS
//======================================================================
// All of the theme functions are kept in the "includes/"
// folder. IMPORTANT: Theme functions should only impact
// style of this particular theme. Any universal functions
// should probably be loaded as a plug-in.
// =====================================================================
// Default Width, Title Tag, and Other Setup Functions
require_once('includes/theme_setup.php' );
// Update Customizer
require_once('includes/customizer.php' );
// Block Setup
require_once('includes/block_setup.php' );
// Menus
require_once('includes/menus.php' );
// Admin Notices
require_once('includes/admin_notices.php' );
// ACF Settings
require_once('includes/acf_settings.php' );
// Widget Settings
require_once('includes/widget_settings.php' );
?>