Improve inline documentation for the wp_get_sites()
return value.
Fixes #25645. git-svn-id: https://develop.svn.wordpress.org/trunk@25862 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
bce2656e6d
commit
af6c888f7c
@ -2066,27 +2066,27 @@ function wp_is_large_network( $using = 'sites' ) {
|
||||
|
||||
|
||||
/**
|
||||
* Return an array of sites for a network.
|
||||
*
|
||||
* @see wp_is_large_network() Returns an empty array if the install is considered large.
|
||||
* Return an array of sites for a network or networks.
|
||||
*
|
||||
* @since 3.7.0
|
||||
*
|
||||
* @param array $args {
|
||||
* Array of arguments. Optional.
|
||||
* Array of default arguments. Optional.
|
||||
*
|
||||
* @type int|array 'network_id' A network ID or array of network IDs. Set to null to retrieve sites
|
||||
* from all networks. Defaults to current network ID.
|
||||
* @type int 'public' Retrieve public or non-public sites. Default null, for any.
|
||||
* @type int 'archived' Retrieve archived or non-archived sites. Default null, for any.
|
||||
* @type int 'mature' Retrieve mature or non-mature sites. Default null, for any.
|
||||
* @type int 'spam' Retrieve spam or non-spam sites. Default null, for any.
|
||||
* @type int 'deleted' Retrieve deleted or non-deleted sites. Default null, for any.
|
||||
* @type int 'limit' Number of sites to limit the query to. Default 100.
|
||||
* @type int 'offset' Exclude the first x sites. Used in combination with the limit parameter. Default 0.
|
||||
* @type int|array $network_id A network ID or array of network IDs. Set to null to retrieve sites
|
||||
* from all networks. Defaults to current network ID.
|
||||
* @type int $public Retrieve public or non-public sites. Default null, for any.
|
||||
* @type int $archived Retrieve archived or non-archived sites. Default null, for any.
|
||||
* @type int $mature Retrieve mature or non-mature sites. Default null, for any.
|
||||
* @type int $spam Retrieve spam or non-spam sites. Default null, for any.
|
||||
* @type int $deleted Retrieve deleted or non-deleted sites. Default null, for any.
|
||||
* @type int $limit Number of sites to limit the query to. Default 100.
|
||||
* @type int $offset Exclude the first x sites. Used in combination with the $limit parameter. Default 0.
|
||||
* }
|
||||
*
|
||||
* @return array An array of site data
|
||||
* @return array An empty array if the install is considered "large" via wp_is_large_network(). Otherwise,
|
||||
* an associative array of site data arrays, each containing the site (network) ID, blog ID,
|
||||
* site domain and path, dates registered and modified, and the language ID. Also, boolean
|
||||
* values for whether the site is public, archived, mature, spam, and/or deleted.
|
||||
*/
|
||||
function wp_get_sites( $args = array() ) {
|
||||
global $wpdb;
|
||||
|
Loading…
Reference in New Issue
Block a user