get_networks()
Retrieves a list of networks.
No Hooks.
Returns
Array|Int
. List of WP_Network objects, a list of network IDs when 'fields' is set to 'ids', or the number of networks when 'count' is passed as a query var.
Usage
get_networks( $args );
- $args(string|array)
- Array or string of arguments. See WP_Network_Query::parse_query() for information on accepted arguments.
Default: empty array
Changelog
Since 4.6.0 | Introduced. |
get_networks() get networks code WP 6.8.1
function get_networks( $args = array() ) { $query = new WP_Network_Query(); return $query->query( $args ); }