From 07c62c3c5f7982b5f517129a772ef7a5b4813aed Mon Sep 17 00:00:00 2001 From: Eric Andrew Lewis Date: Sat, 19 Dec 2015 11:19:57 +0000 Subject: [PATCH] Docs: Add documentation to wp-blog-header.php. Fixes #35161. git-svn-id: https://develop.svn.wordpress.org/trunk@36029 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-blog-header.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/wp-blog-header.php b/src/wp-blog-header.php index 3e1b8ef560..3a7cfb69ed 100644 --- a/src/wp-blog-header.php +++ b/src/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' ); }