W3cubDocs

/WordPress

wp_get_network( object|int $network )

This function has been deprecated. Use get_network() instead.

Retrieve 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;
}

Changelog

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