-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathfunctions.php
More file actions
18 lines (17 loc) · 776 Bytes
/
functions.php
File metadata and controls
18 lines (17 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
/*
* All the functions are in the PHP files in the `functions/` folder.
*/
if ( ! defined('ABSPATH') ) {
exit;
}
require get_template_directory() . '/functions/cleanup.php';
require get_template_directory() . '/functions/setup.php';
require get_template_directory() . '/functions/enqueues.php';
require get_template_directory() . '/functions/action-hooks.php';
require get_template_directory() . '/functions/navbar.php';
require get_template_directory() . '/functions/dimox-breadcrumbs.php';
require get_template_directory() . '/functions/widgets.php';
require get_template_directory() . '/functions/search-widget.php';
require get_template_directory() . '/functions/index-pagination.php';
require get_template_directory() . '/functions/split-post-pagination.php';