Docs: Clarify the `fields` argument description in `WP_Network_Query::__construct()`.

See #32504.
Built from https://develop.svn.wordpress.org/trunk@38104


git-svn-id: http://core.svn.wordpress.org/trunk@38045 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2016-07-19 13:18:28 +00:00
parent c277d565e5
commit 2443c89ee0
2 changed files with 3 additions and 3 deletions

View File

@ -101,8 +101,8 @@ class WP_Network_Query {
* @type array $network__not_in Array of network IDs to exclude. Default empty.
* @type bool $count Whether to return a network count (true) or array of network objects.
* Default false.
* @type string $fields Network fields to return. Accepts 'ids' for network IDs only or empty
* for all fields. Default empty.
* @type string $fields Network fields to return. Accepts 'ids' (returns an array of network IDs)
* or empty (returns an array of complete network objects). Default empty.
* @type int $number Maximum number of networks to retrieve. Default null (no limit).
* @type int $offset Number of networks to offset the query. Used to build LIMIT clause.
* Default 0.

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.6-beta3-38103';
$wp_version = '4.6-beta3-38104';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.