wp_get_sites
- wp_get_sites is deprecated since version 4.6.0!
Alternative: get_sites()
wp_get_sites ( $args = array() )
Parameters:- (array) args { Array of default arguments. Optional. @type int|int[] $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. }
See:Returns:- (array[]) An empty array if the installation is considered "large" via wp_is_large_network(). Otherwise, an associative array of WP_Site data as arrays.
Defined at: - Introduced in WordPress: 3.7.0
- Deprecated in WordPress: 4.6.0
Description
Return an array of sites for a network or networks.