mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-06 02:41:27 +01:00
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' );
|
||
|
|
||
|
}
|