Docs: Add documentation to wp-blog-header.php.

Fixes #35161.

Built from https://develop.svn.wordpress.org/trunk@36029


git-svn-id: http://core.svn.wordpress.org/trunk@35994 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Eric Lewis 2015-12-19 11:20:28 +00:00
parent 013d1178e5
commit e844695e12
2 changed files with 4 additions and 1 deletions

View File

@ -9,10 +9,13 @@ if ( !isset($wp_did_header) ) {
$wp_did_header = true; $wp_did_header = true;
// Load the WordPress library.
require_once( dirname(__FILE__) . '/wp-load.php' ); require_once( dirname(__FILE__) . '/wp-load.php' );
// Set up the WordPress query.
wp(); wp();
// Load the theme template.
require_once( ABSPATH . WPINC . '/template-loader.php' ); require_once( ABSPATH . WPINC . '/template-loader.php' );
} }

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.5-alpha-36028'; $wp_version = '4.5-alpha-36029';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.