Uses
| Uses | Description |
|---|---|
| wp-includes/ms-network.php: get_network() | Retrieves network data given a network ID or network object. |
| wp-includes/functions.php: _deprecated_function() | Mark a function as deprecated and inform when it has been used. |
This function has been deprecated. Use get_network() instead.
Retrieve an object containing information about the requested network.
(object|int) (Required) The network's database row or ID.
(WP_Network|false) Object containing network information if found, false if not.
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;
} | Version | Description |
|---|---|
| 4.7.0 | Use get_network() |
| 3.9.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_get_network