From c1fb007ff31f4f376bdf423f52741920978cc426 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Mon, 10 Feb 2020 03:34:05 +0000 Subject: [PATCH] Docs: Add documentation for globals in `wp-settings.php`. Props chinteshprajapati. Fixes #46253. Built from https://develop.svn.wordpress.org/trunk@47231 git-svn-id: http://core.svn.wordpress.org/trunk@47031 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/version.php | 2 +- wp-settings.php | 19 ++++++++++++++++--- 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/wp-includes/version.php b/wp-includes/version.php index e96e7c6317..d427acb75a 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.4-alpha-47230'; +$wp_version = '5.4-alpha-47231'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. diff --git a/wp-settings.php b/wp-settings.php index cfcdc8a3d8..a8f96ec0aa 100644 --- a/wp-settings.php +++ b/wp-settings.php @@ -15,10 +15,19 @@ */ define( 'WPINC', 'wp-includes' ); -/* +/** + * Version information for the current WordPress release. + * * These can't be directly globalized in version.php. When updating, * we're including version.php from another installation and don't want * these values to be overridden if already set. + * + * @global string $wp_version The WordPress version string. + * @global int $wp_db_version WordPress database version. + * @global string $tinymce_version TinyMCE version. + * @global string $required_php_version The required PHP version string. + * @global string $required_mysql_version The required MySQL version string. + * @global string $wp_local_package Locale code of the package. */ global $wp_version, $wp_db_version, $tinymce_version, $required_php_version, $required_mysql_version, $wp_local_package; require ABSPATH . WPINC . '/version.php'; @@ -108,8 +117,12 @@ require ABSPATH . WPINC . '/class-wp.php'; require ABSPATH . WPINC . '/class-wp-error.php'; require ABSPATH . WPINC . '/pomo/mo.php'; -// Include the wpdb class and, if present, a db.php database drop-in. +/** + * @global wpdb $wpdb WordPress database abstraction object. + * @since 0.71 + */ global $wpdb; +// Include the wpdb class and, if present, a db.php database drop-in. require_wp_db(); // Set the database table prefix and the format specifiers for database table columns. @@ -486,7 +499,7 @@ unset( $locale_file ); $GLOBALS['wp_locale'] = new WP_Locale(); /** - * WordPress Locale Switcher object for switching locales. + * WordPress Locale Switcher object for switching locales. * * @since 4.7.0 *