diff --git a/wp-includes/query.php b/wp-includes/query.php index 00b6fd5fe6..e0f7639531 100644 --- a/wp-includes/query.php +++ b/wp-includes/query.php @@ -46,14 +46,16 @@ function get_queried_object() { } /** - * Retrieve ID of the current queried object. Wrapper for $wp_query->get_queried_object_id() + * Retrieve ID of the current queried object. + * + * Wrapper for WP_Query::get_queried_object_id(). * * @since 3.1.0 * @access public * - * @global WP_Query $wp_query + * @global WP_Query $wp_query Global WP_Query instance. * - * @return int + * @return int ID of the queried object. */ function get_queried_object_id() { global $wp_query; diff --git a/wp-includes/version.php b/wp-includes/version.php index 063114c9e2..142429e0e3 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34285'; +$wp_version = '4.4-alpha-34286'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.