Files
WordPress/wp-blog-header.php
T

22 lines
369 B
PHP
Raw Normal View History

2003-12-11 00:22:36 +00:00
<?php
/**
* Loads the WordPress environment and template.
*
* @package WordPress
*/
2003-12-11 00:22:36 +00:00
2017-11-30 23:11:00 +00:00
if ( ! isset( $wp_did_header ) ) {
$wp_did_header = true;
// Load the WordPress library.
2017-11-30 23:11:00 +00:00
require_once( dirname( __FILE__ ) . '/wp-load.php' );
2003-12-11 00:22:36 +00:00
// Set up the WordPress query.
wp();
2004-08-27 20:59:38 +00:00
// Load the theme template.
require_once( ABSPATH . WPINC . '/template-loader.php' );
2004-05-31 23:35:32 +00:00
}