This repository has been archived by the owner on Nov 1, 2019. It is now read-only.
forked from thicolares/TEDxTheme
-
Notifications
You must be signed in to change notification settings - Fork 1
/
functions.php
38 lines (28 loc) · 1.49 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
<?php // functions.php
require_once 'includes/controls/textarea_custom_control.php';
//-- Theme Setup ------------------------------------------------------------
require_once 'includes/theme_setup.php';
require_once 'includes/theme/enqueue_scripts.php';
require_once 'includes/theme/image_settings.php';
require_once 'includes/wp_bootstrap_navwalker.php';
require_once 'includes/theme/menus.php';
//-- Utilities --------------------------------------------------------------
require_once 'includes/renderer.php';
require_once 'includes/tedx_helpers.php';
//-- Advanced Custom Fields -------------------------------------------------
require_once 'includes/advanced_custom_fields/template_home.php';
//-- Admin Inclues ----------------------------------------------------------
require_once 'includes/admin/plugin_dependencies.php';
//-- Theme Query Helpers ----------------------------------------------------
require_once 'includes/tedx_query.php';
//-- Custom Post Types ------------------------------------------------------
require_once 'includes/custom_post_types/partner.php';
$PartnerPostType = new PartnerPostType();
require_once 'includes/custom_post_types/team.php';
$TeamPostType = new TeamPostType();
require_once 'includes/custom_post_types/talk.php';
$TalkPostType = new TalkPostType();
require_once 'includes/custom_post_types/speaker.php';
$SpeakerPostType = new SpeakerPostType();
require_once 'includes/custom_post_types/schedule_items.php';
$ScheduleItemsPostType = new ScheduleItemsPostType();