root/trunk/wp-blog-header.php

Revision 7991, 274 bytes (checked in by ryan, 1 month ago)

File file level phpdoc from jacobsantos. see #7037

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1 <?php
2 /**
3  * Loads the WordPress environment and template.
4  *
5  * @package WordPress
6  */
7
8 if ( !isset($wp_did_header) ) {
9
10     $wp_did_header = true;
11
12     require_once( dirname(__FILE__) . '/wp-load.php' );
13
14     wp();
15
16     require_once( ABSPATH . WPINC . '/template-loader.php' );
17
18 }
19
20 ?>
Note: See TracBrowser for help on using the browser.