-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathfunctions.php
More file actions
29 lines (22 loc) · 887 Bytes
/
functions.php
File metadata and controls
29 lines (22 loc) · 887 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
<?php
/**
* Load resources to initialize the html2wp theme functionalities
*
* @package html2wp/simple-wp-starter-theme
*/
// The Composer autoload includes
require_once get_stylesheet_directory() . '/html2wp/vendor/autoload.php';
// Theme setup
require_once get_stylesheet_directory() . '/html2wp/setup.php';
// The menu walker
require_once get_stylesheet_directory() . '/html2wp/html2wp-walker-nav-menu.php';
// Extend wp
require_once get_stylesheet_directory() . '/html2wp/extend.php';
// Custom methods
require_once get_stylesheet_directory() . '/html2wp/methods.php';
// Form methods
require_once get_stylesheet_directory() . '/html2wp/forms.php';
/**
* Note: It is recommended to not add any custom code here if you plan to convert your theme again.
* Please consider using a child theme instead: http://codex.wordpress.org/Child_Themes
*/