mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-18 16:45:31 +01:00
5b8113578d
git-svn-id: http://svn.automattic.com/wordpress/trunk@7971 1a063a9b-81f0-0310-95a4-ce76da25c4cd
16 lines
193 B
PHP
16 lines
193 B
PHP
<?php
|
|
|
|
if ( !isset($wp_did_header) ) {
|
|
|
|
$wp_did_header = true;
|
|
|
|
require_once( dirname(__FILE__) . '/wp-load.php' );
|
|
|
|
wp();
|
|
|
|
require_once( ABSPATH . WPINC . '/template-loader.php' );
|
|
|
|
}
|
|
|
|
?>
|