-
Notifications
You must be signed in to change notification settings - Fork 0
/
functions.php
67 lines (54 loc) · 2.82 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
// define( 'NOVA_DEBUG', true );
// Vendors
require_once( get_template_directory() . '/functions/admin-setup.php' );
// Helpers
require_once( get_template_directory() . '/functions/helpers.php' );
// Filters
require_once( get_template_directory() . '/functions/filters.php' );
// Breadcrumbs
require_once( get_template_directory() . '/functions/breadcrumbs.php' );
// Ajax
require_once( get_template_directory() . '/functions/ajax-setup.php' );
// Body Classes
require_once( get_template_directory() . '/functions/body-classes.php' );
// Menus
require_once( get_template_directory() . '/inc/menus/menus.php' );
// Elementor
require_once( get_template_directory() . '/functions/nova-elementor.php' );
require_once( get_template_directory() . '/functions/nova-kitify.php' );
// Metabox
if ( NOVA_RWMB_IS_ACTIVE ) {
require_once( get_template_directory() . '/functions/metabox.php' );
}
// Customiser
require_once( get_template_directory() . '/inc/fonts/AddCustomFonts.php' );
require_once( get_template_directory() . '/inc/fonts/functions.php' );
require_once( get_template_directory() . '/inc/customizer/frontend.php' );
require_once( get_template_directory() . '/inc/customizer/backend.php' );
require_once( get_template_directory() . '/inc/customizer/styles.php' );
require_once( get_template_directory() . '/inc/customizer/read_options.php' );
// Theme Setup
require_once( get_template_directory() . '/functions/menu-walkers.php' );
require_once( get_template_directory() . '/functions/mega-menu.php' );
require_once( get_template_directory() . '/functions/theme-setup.php' );
require_once( get_template_directory() . '/functions/ajax-search.php' );
// Enqueue Styles & Scripts
require_once( get_template_directory() . '/functions/enqueue/default-fonts.php' );
require_once( get_template_directory() . '/functions/enqueue/google-fonts.php' );
require_once( get_template_directory() . '/functions/enqueue/theme-icon-fonts.php' );
require_once( get_template_directory() . '/functions/enqueue/styles.php' );
require_once( get_template_directory() . '/functions/enqueue/scripts.php' );
require_once( get_template_directory() . '/functions/enqueue/admin-styles.php' );
require_once( get_template_directory() . '/functions/enqueue/admin-scripts.php' );
// WP
require_once( get_template_directory() . '/functions/wp/filters.php' );
require_once( get_template_directory() . '/functions/wp/archive-title.php' );
require_once( get_template_directory() . '/functions/wp/archive-meta.php' );
// WC
require_once( get_template_directory() . '/functions/wc/actions.php' );
require_once( get_template_directory() . '/functions/wc/filters.php' );
require_once( get_template_directory() . '/functions/wc/custom.php' );
require_once( get_template_directory() . '/functions/wc/wc-config.php' );
// Widgets
require_once( get_template_directory() . '/inc/widgets/widget-areas.php' );