-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunctions.php
More file actions
42 lines (29 loc) · 1.31 KB
/
Copy pathfunctions.php
File metadata and controls
42 lines (29 loc) · 1.31 KB
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
<?php
// Start the Genesis engine. DO NOT REMOVE.
include_once get_template_directory() . '/lib/init.php';
// Include developer modules, needs WP_LOCAL_DEV set
include_once get_stylesheet_directory() . '/modules/dev.php';
// General Genesis Child Theme Declarations
include_once get_stylesheet_directory() . '/modules/admin_child_theme.php';
// Functions related to images
include_once get_stylesheet_directory() . '/modules/images.php';
// Hisrc functionality
include_once get_stylesheet_directory() . '/modules/hisrc.php';
// Register global styles and scripts
include_once get_stylesheet_directory() . '/modules/register.php';
// Navigation with Bootstrap
include_once get_stylesheet_directory() . '/modules/nav.php';
// CPT and ACF
include_once get_stylesheet_directory() . '/modules/cpt_acf.php';
// Reusable content blocks
include_once get_stylesheet_directory() . '/modules/blocks.php';
// Footer content
include_once get_stylesheet_directory() . '/modules/footer.php';
// Snippets
include_once get_stylesheet_directory() . '/modules/snippets.php';
// Notifications
include_once get_stylesheet_directory() . '/modules/notifications.php';
// Helper functions
include_once get_stylesheet_directory() . '/modules/helper_functions.php';
// Short codes
include_once get_stylesheet_directory() . '/modules/shortcodes.php';