-
Notifications
You must be signed in to change notification settings - Fork 2
/
functions.php
36 lines (26 loc) · 1.78 KB
/
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
35
36
<?php
/*-----------------------------------------------------------------------------------*/
/* Start WooThemes Functions - Please refrain from editing this section */
/*-----------------------------------------------------------------------------------*/
// Set path to WooFramework and theme specific functions
$functions_path = TEMPLATEPATH . '/functions/';
$includes_path = TEMPLATEPATH . '/includes/';
// WooFramework
require_once ($functions_path . 'admin-init.php'); // Framework Init
// Theme specific functionality
require_once ($includes_path . 'theme-options.php'); // Options panel settings and custom settings
require_once ($includes_path . 'theme-functions.php'); // Custom theme functions
require_once ($includes_path . 'theme-plugins.php'); // Theme specific plugins integrated in a theme
require_once ($includes_path . 'theme-actions.php'); // Theme actions & user defined hooks
require_once ($includes_path . 'theme-comments.php'); // Custom comments/pingback loop
require_once ($includes_path . 'theme-custom-post-types.php'); // Custom post types
require_once ($includes_path . 'theme-js.php'); // Load javascript in wp_head
require_once ($includes_path . 'sidebar-init.php'); // Initialize widgetized areas
require_once ($includes_path . 'theme-widgets.php'); // Theme widgets
/*-----------------------------------------------------------------------------------*/
/* You can add custom functions below */
/*-----------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------*/
/* Don't add any code below here or the sky will fall down */
/*-----------------------------------------------------------------------------------*/
?>