-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.php
39 lines (30 loc) · 1.07 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
<?php
// Theme foundation
include_once 'includes/utilities.php';
include_once 'includes/config.php';
include_once 'includes/meta.php';
include_once 'includes/media-backgrounds.php';
include_once 'includes/nav-functions.php';
include_once 'includes/header-functions.php';
include_once 'includes/footer-functions.php';
include_once 'includes/degree-functions.php';
include_once 'includes/vertical-functions.php';
include_once 'includes/resources-functions.php';
include_once 'includes/section-functions.php';
// Plugin extras/overrides
if ( class_exists( 'UCF_Post_List_Common' ) ) {
include_once 'includes/post-list-functions.php';
}
if ( class_exists( 'UCF_Degree_Search_Common' ) ) {
include_once 'includes/degree-search-functions.php';
}
if ( class_exists( 'UCF_People_PostType' ) ) {
include_once 'includes/person-functions.php';
}
if ( class_exists( 'UCF_News_Common' ) ) {
include_once 'includes/news-functions.php';
}
if ( class_exists( 'UCF_Landing_Page_PostType' ) ) {
include_once 'includes/landing-functions.php';
include_once 'includes/class-landing-header-content.php';
}