-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunctions.php
More file actions
33 lines (22 loc) · 905 Bytes
/
functions.php
File metadata and controls
33 lines (22 loc) · 905 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
<?php
// Theme functions
// Enqueue styles and scripts
require_once get_theme_file_path('functions/styles-and-scripts.php');
// Theme setup
require_once get_theme_file_path('functions/disable-posts-comments.php');
// Templating functions
require_once get_theme_file_path('functions/templating-functions.php');
// Post-setup actions
require_once get_theme_file_path('functions/post-setup.php');
// Configuration for custom fields
require_once get_theme_file_path('functions/acf-config.php');
// Section navigation
require_once get_theme_file_path('functions/section-nav.php');
// Pagination
require_once get_theme_file_path('functions/pagination.php');
// Images
require_once get_theme_file_path('functions/images.php');
// Template fields
require_once get_theme_file_path('functions/template-fields.php');
// Editor functions
require_once get_theme_file_path('functions/editor-functions.php');