From 45655bb9280079fa6abe21bc450f5c60a9bc9e31 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 20 Oct 2017 22:04:56 +0000 Subject: [PATCH] Docs: Document `$wp_version` global in `wp_initial_constants()`. Props mt8.biz. Fixes #42259. Built from https://develop.svn.wordpress.org/trunk@41959 git-svn-id: http://core.svn.wordpress.org/trunk@41793 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/default-constants.php | 3 ++- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/wp-includes/default-constants.php b/wp-includes/default-constants.php index bf3e31dfb2..94da94d2c3 100644 --- a/wp-includes/default-constants.php +++ b/wp-includes/default-constants.php @@ -12,7 +12,8 @@ * * @since 3.0.0 * - * @global int $blog_id + * @global int $blog_id The current site ID. + * @global string $wp_version The WordPress version string. */ function wp_initial_constants() { global $blog_id; diff --git a/wp-includes/version.php b/wp-includes/version.php index 3296444a8e..08e2dda67a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9-beta3-41958'; +$wp_version = '4.9-beta3-41959'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.