mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-03 09:21:03 +01:00
e3b46b25d3
git-svn-id: http://svn.automattic.com/wordpress/trunk@19712 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' );
|
|
|
|
}
|