From e844695e121c1a01f43f312ecd539affb004f0eb Mon Sep 17 00:00:00 2001 From: Eric Lewis Date: Sat, 19 Dec 2015 11:20:28 +0000 Subject: [PATCH] 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 --- wp-blog-header.php | 3 +++ wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/wp-blog-header.php b/wp-blog-header.php index 3e1b8ef560..3a7cfb69ed 100644 --- a/wp-blog-header.php +++ b/wp-blog-header.php @@ -9,10 +9,13 @@ if ( !isset($wp_did_header) ) { $wp_did_header = true; + // Load the WordPress library. require_once( dirname(__FILE__) . '/wp-load.php' ); + // Set up the WordPress query. wp(); + // Load the theme template. require_once( ABSPATH . WPINC . '/template-loader.php' ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index cc34c50cb6..edf4e4584a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @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.