-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfunctions.php
More file actions
45 lines (37 loc) · 971 Bytes
/
functions.php
File metadata and controls
45 lines (37 loc) · 971 Bytes
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
<?php
/**
* Leopard functions and definitions
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package Leopard
*/
if ( ! defined( 'LPRD_VERSION' ) ) {
// Replace the version number of the theme on each release.
define( 'LPRD_VERSION', '1.1.1' );
}
/**
* Theme Setup
*/
require_once get_template_directory() . '/inc/theme-setup.php';
/**
* Theme Scripts
*/
require_once get_template_directory() . '/inc/theme-scripts.php';
/**
* Theme Functions
*/
require get_template_directory() . '/inc/theme-functions.php';
/**
* Implement the Custom Header feature.
*/
require get_template_directory() . '/inc/custom-header.php';
/**
* Functions which enhance the theme by hooking into WordPress.
*/
require get_template_directory() . '/inc/template-functions.php';
/**
* Customizer additions.
*/
// require get_template_directory() . '/inc/customizer.php';
require get_template_directory() . '/inc/customizer/customizer.php';