mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-06 02:41:27 +01:00
0b648f198b
git-svn-id: http://core.svn.wordpress.org/branches/4.3@33616 1a063a9b-81f0-0310-95a4-ce76da25c4cd
19 lines
271 B
PHP
19 lines
271 B
PHP
<?php
|
|
/**
|
|
* Loads the WordPress environment and template.
|
|
*
|
|
* @package WordPress
|
|
*/
|
|
|
|
if ( !isset($wp_did_header) ) {
|
|
|
|
$wp_did_header = true;
|
|
|
|
require_once( dirname(__FILE__) . '/wp-load.php' );
|
|
|
|
wp();
|
|
|
|
require_once( ABSPATH . WPINC . '/template-loader.php' );
|
|
|
|
}
|