From c277d565e5e7fb20131422d608a42ea1379d6a8b Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 19 Jul 2016 13:15:28 +0000 Subject: [PATCH] Docs: Clarify the `fields` argument description in `WP_Site_Query::__construct()`. Props ramiy. See #35791. Built from https://develop.svn.wordpress.org/trunk@38103 git-svn-id: http://core.svn.wordpress.org/trunk@38044 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-site-query.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/class-wp-site-query.php b/wp-includes/class-wp-site-query.php index b8226a966b..cbffd66493 100644 --- a/wp-includes/class-wp-site-query.php +++ b/wp-includes/class-wp-site-query.php @@ -110,8 +110,8 @@ class WP_Site_Query { * Default false. * @type array $date_query Date query clauses to limit sites by. See WP_Date_Query. * Default null. - * @type string $fields Site fields to return. Accepts 'ids' for site IDs only or empty - * for all fields. Default empty. + * @type string $fields Site fields to return. Accepts 'ids' (returns an array of site IDs) + * or empty (returns an array of complete site objects). Default empty. * @type int $ID A site ID to only return that site. Default empty. * @type int $number Maximum number of sites to retrieve. Default null (no limit). * @type int $offset Number of sites to offset the query. Used to build LIMIT clause. diff --git a/wp-includes/version.php b/wp-includes/version.php index b95d6cdc06..bfe850bb74 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.6-beta3-38102'; +$wp_version = '4.6-beta3-38103'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.