forked from funkhaus/fuxt-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.php
22 lines (20 loc) · 923 Bytes
/
functions.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
/**
* This file is the main entry point for WordPress functions.
*
* @package fuxt-backend
*/
define( 'FUXT_VERSION', wp_get_theme( 'fuxt-backend' )->get( 'Version' ) );
/**
* Load all modules.
*/
require_once get_template_directory() . '/functions/wp-functions.php';
require_once get_template_directory() . '/functions/gql-functions.php';
require_once get_template_directory() . '/functions/theme-config.php';
require_once get_template_directory() . '/functions/gutenberg-functions.php';
require_once get_template_directory() . '/functions/acf-functions.php';
require_once get_template_directory() . '/functions/cookie-manager.php';
require_once get_template_directory() . '/functions/plugin-manifest.php';
require_once get_template_directory() . '/functions/developer-role.php';
require_once get_template_directory() . '/functions/widgets.php';
require_once get_template_directory() . '/functions/svg.php';