2003-12-10 18:22:36 -06:00
|
|
|
<?php
|
2008-05-25 10:50:15 -05:00
|
|
|
/**
|
|
|
|
* Loads the WordPress environment and template.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
*/
|
2003-12-10 18:22:36 -06:00
|
|
|
|
2017-11-30 17:11:00 -06:00
|
|
|
if ( ! isset( $wp_did_header ) ) {
|
2006-10-04 00:32:18 -05:00
|
|
|
|
2008-05-21 00:59:27 -05:00
|
|
|
$wp_did_header = true;
|
2005-02-13 15:20:00 -06:00
|
|
|
|
2015-12-19 05:20:28 -06:00
|
|
|
// Load the WordPress library.
|
2017-11-30 17:11:00 -06:00
|
|
|
require_once( dirname( __FILE__ ) . '/wp-load.php' );
|
2003-12-10 18:22:36 -06:00
|
|
|
|
2015-12-19 05:20:28 -06:00
|
|
|
// Set up the WordPress query.
|
2008-05-21 00:59:27 -05:00
|
|
|
wp();
|
2004-08-27 15:59:38 -05:00
|
|
|
|
2015-12-19 05:20:28 -06:00
|
|
|
// Load the theme template.
|
2008-05-21 00:59:27 -05:00
|
|
|
require_once( ABSPATH . WPINC . '/template-loader.php' );
|
2004-05-31 18:35:32 -05:00
|
|
|
|
2008-05-21 00:59:27 -05:00
|
|
|
}
|