2019-03-12 09:27:46 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Loads the WordPress environment and template.
|
|
|
|
*
|
|
|
|
* @package WordPress
|
|
|
|
*/
|
|
|
|
|
2019-04-16 19:56:22 +00:00
|
|
|
if ( ! isset( $wp_did_header ) ) {
|
2019-03-12 09:27:46 +00:00
|
|
|
|
|
|
|
$wp_did_header = true;
|
|
|
|
|
|
|
|
// Load the WordPress library.
|
2019-04-16 19:56:22 +00:00
|
|
|
require_once( dirname( __FILE__ ) . '/wp-load.php' );
|
2019-03-12 09:27:46 +00:00
|
|
|
|
|
|
|
// Set up the WordPress query.
|
|
|
|
wp();
|
|
|
|
|
|
|
|
// Load the theme template.
|
|
|
|
require_once( ABSPATH . WPINC . '/template-loader.php' );
|
|
|
|
|
|
|
|
}
|