From 0fbc96e5bc516815c205686696e574de167647fd Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 19 Jul 2016 13:17:51 +0000 Subject: [PATCH] Docs: Clarify the `fields` argument description in `WP_Network_Query::__construct()`. See #32504. git-svn-id: https://develop.svn.wordpress.org/trunk@38104 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-network-query.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/class-wp-network-query.php b/src/wp-includes/class-wp-network-query.php index cb42cb478a..7f8954ca40 100644 --- a/src/wp-includes/class-wp-network-query.php +++ b/src/wp-includes/class-wp-network-query.php @@ -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.