mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-01 00:10:36 +01:00
01942c8a6c
git-svn-id: http://svn.automattic.com/wordpress/trunk@16514 1a063a9b-81f0-0310-95a4-ce76da25c4cd
20 lines
274 B
PHP
20 lines
274 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' );
|
|
|
|
}
|
|
|
|
?>
|