-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.php
65 lines (46 loc) · 1.68 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
54
55
56
57
58
59
60
61
62
63
64
65
<?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' );
// Custom Post Types
require_once('includes/custom_post_types.php' );
// Custom Taxonomies
require_once('includes/custom_taxonomies.php' );
// Gravity Forms Functions
require_once('includes/gform_functions.php' );
// Custom search portal block
require_once('blocks/search_portal/config.php' );
// Featured Projects block
require_once('blocks/featured_projects/config.php' );
// Featured Projects block
require_once('blocks/ldap_content_block/config.php' );
// Featured Projects block
require_once('blocks/search_portal_v2/config.php' );
// Update Logo
require_once('includes/login_logo.php' );
// Endpoints
require_once('includes/custom_api_endpoints.php' );
// LDAP Authorization
//require_once('includes/ldap_auth.php' );
// Shortcodes
//require_once('includes/shortcodes.php');
?>