-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.php
35 lines (31 loc) · 1.26 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
<?php
/***************************************************************************
*
* ----------------------------------------------------------------------
* DO NOT EDIT THIS FILE
* ----------------------------------------------------------------------
*
* Copyright (C) Themify
* http://themify.me
*
***************************************************************************/
$theme_includes = apply_filters( 'themify_theme_includes',
array( 'themify/themify-database.php',
'themify/class-themify-config.php',
'themify/themify-utils.php',
'themify/themify-config.php',
'themify/themify-modules.php',
'theme-options.php',
'theme-modules.php',
'theme-functions.php',
'custom-modules.php',
'custom-functions.php',
'themify/themify-widgets.php' ));
foreach ( $theme_includes as $include ) { locate_template( $include, true ); }
/**********************************************************************************************************
*
* Do not edit this file.
* To add custom PHP functions to the theme, create a new 'custom-functions.php' file in the theme folder.
*
***********************************************************************************************************/
?>