blob: ac65da813f5327907fa4ea5ae5157a91b7ab2384 (
plain)
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
|
<?php
/*
* Functions file
* Calls all other required files
* PLEASE DO NOT EDIT THEME FILES - CREATE A CHILD THEME
*
* @package mantra
*/
// theme specifics
define ('_CRYOUT_THEME_NAME','mantra');
define ('_CRYOUT_THEME_VERSION','2.6.0');
require_once(get_template_directory() . "/admin/main.php"); // Load necessary admin files
//Loading include fiels
require_once(get_template_directory() . "/includes/theme-setup.php"); // Setup and init theme
require_once(get_template_directory() . "/includes/theme-styles.php"); // Register and enqueue css styles and scripts
require_once(get_template_directory() . "/includes/theme-loop.php"); // Loop related fiels
require_once(get_template_directory() . "/includes/theme-frontpage.php"); // Frontpage generation
require_once(get_template_directory() . "/includes/theme-comments.php"); // Theme comment functions
require_once(get_template_directory() . "/includes/theme-functions.php"); // Theme misc functions
require_once(get_template_directory() . "/includes/theme-hooks.php"); // Theme hooks
require_once(get_template_directory() . "/includes/tgm.php"); // TGM-PA
?>
|