-
Notifications
You must be signed in to change notification settings - Fork 46
/
wf-config.php
27 lines (21 loc) · 1.27 KB
/
wf-config.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
<?php
/**
* Advanced configuration options - normal users do not need to change these!
*
* @package Wonderflux
* @since Wonderflux 0.1
*/
if ( !defined('WF_MAIN_DIR') ) { define( 'WF_MAIN_DIR', get_template_directory() ); }
if ( !defined('WF_MAIN_URL') ) { define( 'WF_MAIN_URL', get_template_directory_uri() ); }
if ( !defined('WF_CONTENT_DIR') ) { define( 'WF_CONTENT_DIR', WF_MAIN_DIR . '/wf-content' ); }
if ( !defined('WF_CONTENT_URL') ) { define( 'WF_CONTENT_URL', WF_MAIN_URL . '/wf-content' ); }
if ( !defined('WF_INCLUDES_DIR') ) { define( 'WF_INCLUDES_DIR', WF_MAIN_DIR . '/wf-includes' ); }
if ( !defined('WF_INCLUDES_URL') ) { define( 'WF_INCLUDES_URL', WF_MAIN_URL . '/wf-includes' ); }
if ( !defined('WF_THEME_URL') ) { define( 'WF_THEME_URL', get_stylesheet_directory_uri() ); }
if ( !defined('WF_THEME_DIR') ) { define( 'WF_THEME_DIR', get_stylesheet_directory() ); }
if ( !defined('WF_ADMIN_ACCESS') ) { define( 'WF_ADMIN_ACCESS', 'administrator' ); }
if ( !defined('WF_THEME_FRAMEWORK_REPLACE') ) { define( 'WF_THEME_FRAMEWORK_REPLACE', false ); }
if ( !defined('WF_THEME_FRAMEWORK_NONE') ) { define( 'WF_THEME_FRAMEWORK_NONE', false ); }
if ( !defined('WF_DEBUG') ) { define( 'WF_DEBUG', false ); }
if ( !defined('WF_PRO_MODE') ) { define( 'WF_PRO_MODE', true ); }
?>