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.