-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.php
34 lines (23 loc) · 869 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
<?php
// Default settings
include( get_template_directory() . '/inc/default.php' );
// Custom Post Types
include( get_template_directory() . '/inc/cpt.php' );
// Theme functions
include( get_template_directory() . '/inc/theme_functions.php' );
// Custom Menu Walker
include( get_template_directory() . '/inc/classes.php' );
// Custom Widgets
include( get_template_directory() . '/inc/widgets.php' );
// Theme sidebars
include( get_template_directory() . '/inc/sidebars.php' );
// Theme thumbnails
include( get_template_directory() . '/inc/thumbnails.php' );
// Theme menus
include( get_template_directory() . '/inc/menus.php' );
// Theme css & js
include( get_template_directory() . '/inc/scripts.php' );
// Theme options
include( get_template_directory() . '/inc/options.php' );
// Theme options
include( get_template_directory() . '/inc/shortcodes.php' );