-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathfunctions.php
23 lines (21 loc) · 1005 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
23
<?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/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/class-cookiemanager.php';
require_once get_template_directory() . '/functions/class-cookiemanagersettings.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';
require_once get_template_directory() . '/functions/proxy.php';