-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.php
29 lines (22 loc) · 1.25 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
<?php
/*
Welcome to Launchpad Theme! This is where we include all the function files for FDT.
Probably best to not edit anything in here.
*/
// ************* INCLUDE FUNCTION FILES ***************
// CORE FLEXDEV FUNCTIONS
require_once('inc/gdt-cleanup.php'); // if you remove this the Internet blows up, just sayin'
require_once('inc/gdt-gutenberg.php'); // all the Gutenberg theme support and customizations
require_once('inc/gdt-enqueues.php'); // WP enqueues
require_once('inc/gdt-menus.php'); // declare and create menus / navigation
require_once('inc/gdt-content.php'); // functions that alter, edits, and assist with pure content (text mostly)
require_once('inc/gdt-images.php'); // images yo!
require_once('inc/gdt-toolbelt.php'); // those little tools to make your WP life easier
// FOR CREATING CPT / CUSTOM TAXONOMY
// require_once('inc/custom-post-type.php'); // you can disable this line if not using CPTs
// require_once('inc/custom-taxonomy.php'); // you can disable this line if not using Custom Taxonomy
// CUSTOMIZE THE WORDPRESS ADMIN
require_once('inc/admin.php'); // things that happen only in the admin
// CUSTOM FUNCTIONS FOR EACH WEBSITE
require_once('inc/gdt-custom.php'); // per project custom functions
/* DON'T DELETE THIS CLOSING TAG */ ?>