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:
parent
c277d565e5
commit
2443c89ee0
|
@ -101,8 +101,8 @@ class WP_Network_Query {
|
||||||
* @type array $network__not_in Array of network IDs to exclude. Default empty.
|
* @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.
|
* @type bool $count Whether to return a network count (true) or array of network objects.
|
||||||
* Default false.
|
* Default false.
|
||||||
* @type string $fields Network fields to return. Accepts 'ids' for network IDs only or empty
|
* @type string $fields Network fields to return. Accepts 'ids' (returns an array of network IDs)
|
||||||
* for all fields. Default empty.
|
* 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 $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.
|
* @type int $offset Number of networks to offset the query. Used to build LIMIT clause.
|
||||||
* Default 0.
|
* Default 0.
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @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.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue