Warning: This function has been deprecated. Use get_network() instead.
wp_get_network() WordPress Function
The wp_get_network function allows you to get a network object by its id. This function is useful in multisite installations.
wp_get_network( object|int $network ) #
Retrieves an object containing information about the requested network.
Description
See also
Parameters
- $network
(object|int)(Required)The network's database row or ID.
Return
(WP_Network|false) Object containing network information if found, false if not.
Source
File: wp-includes/ms-load.php
function wp_get_network( $network ) { _deprecated_function( __FUNCTION__, '4.7.0', 'get_network()' ); $network = get_network( $network ); if ( null === $network ) { return false; } return $network; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.7.0 | Use get_network() |
3.9.0 | Introduced. |