Created
May 23, 2011 19:17
-
-
Save loudestnoise/987329 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Functions - Framework gatekeeper | |
* | |
* This file defines a few constants variables, loads up the core framework file, | |
* and finally initialises the main WP Framework Class. | |
* | |
* @package WPFramework | |
* @subpackage Functions | |
*/ | |
define( 'WP_FRAMEWORK', '0.2.4' ); // Defines current version for WP Framework | |
/* Blast you red baron! Initialise WP Framework */ | |
require_once( TEMPLATEPATH . '/library/framework.php' ); | |
WPFramework::init(); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment