-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfunctions.php
38 lines (22 loc) · 897 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/**
* Byvex functions and definitions
*
* @package Byvex
*/
// Set up theme defaults and register support for various WordPress features
require get_template_directory() . '/inc/after-setup-theme.php';
// Enqueue scripts and styles
require get_template_directory() . '/inc/enqueue-scripts.php';
// Add preload for CDN
require get_template_directory() . '/inc/resource-hints.php';
// Custom template functions for this theme
require get_template_directory() . '/inc/template-functions.php';
// Custom template tags for this theme
require get_template_directory() . '/inc/template-tags.php';
// Register widget area
require get_template_directory() . '/inc/widgets-init.php';
// Load custom WordPress nav walker
require get_template_directory() . '/inc/bootstrap_walker_nav_menu.php';
// WooCommerce Compatibility
require get_template_directory() . '/inc/woocommerce.php';