-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathfunctions.php
48 lines (34 loc) · 1.47 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
<?php
/**
* Main Functions File - used for:
* • including other function-files
* • WP-Support & WP-Setup
* • general functions like replacements, translations
*
* @author Flurin Dürst
* @version 2.1
* @since WPSeed 0.1
*
*/
/*==================================================================================
DEVELOPER TOOLKIT
==================================================================================*/
// functions used for development purposes like debuggers sanitizers or IP-checks
require('functions/functions-dev.php');
/*==================================================================================
WP SETUP & SETTINGS
==================================================================================*/
// WP-setup and preferences + general settings, filters, theme support & more
require('functions/functions-setup.php');
require('functions/functions-settings.php');
/*==================================================================================
GUTENBERG ACF
==================================================================================*/
// bundles all custom Gutenberg-blocks created with ACF
require('functions/functions-gutenberg.php');
/*==================================================================================
CUSTOM
==================================================================================*/
// custom functions like shortcodes should be added here
require('functions/functions-custom.php');
?>