-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.php
24 lines (18 loc) · 903 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
<?php
$natty_themename = 'silesia';
$natty_current = '1.0.6';
$natty_manualurl = 'http://support.nattywp.com/index.php?act=kb';
$nattywp_option_name = $natty_themename.'_nattywp';
$natty_functions_path = get_template_directory() . '/functions/';
$natty_include_path = get_template_directory() . '/include/';
$natty_license_path = get_template_directory() . '/license/';
require_once ($natty_include_path . 'settings-color.php');
require_once ($natty_include_path . 'settings-theme.php');
require_once ($natty_include_path . 'settings-comments.php');
require_once ($natty_functions_path . 'core-init.php');
require_once ($natty_include_path . 'hooks.php');
require_once ($natty_include_path . 'sidebar-init.php');
require_once ($natty_include_path . 'widgets/flickr.php');
require_once ($natty_include_path . 'widgets/feedburner.php');
require_once ($natty_include_path . 'widgets/twitter.php');
?>