Multisite: Deprecate `wp_get_network()`.
`wp_get_network()` was converted into a wrapper for `get_network()` in 4.6.0 and can now be deprecated. This moves `wp_get_network()` to the bottom of `ms-load.php` as `ms-deprecated.php` is not available early enough. Props PieWP, flixos90. Fixes #37553. git-svn-id: https://develop.svn.wordpress.org/trunk@38515 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
00c47125db
commit
6f62798887
|
@ -133,25 +133,6 @@ function get_network_by_path( $domain, $path, $segments = null ) {
|
|||
return WP_Network::get_by_path( $domain, $path, $segments );
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve an object containing information about the requested network.
|
||||
*
|
||||
* @since 3.9.0
|
||||
*
|
||||
* @internal In 4.6.0, converted to use get_network()
|
||||
*
|
||||
* @param object|int $network The network's database row or ID.
|
||||
* @return WP_Network|false Object containing network information if found, false if not.
|
||||
*/
|
||||
function wp_get_network( $network ) {
|
||||
$network = get_network( $network );
|
||||
if ( null === $network ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return $network;
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve a site object by its domain and path.
|
||||
*
|
||||
|
@ -542,3 +523,26 @@ function wpmu_current_site() {
|
|||
_deprecated_function( __FUNCTION__, '3.9.0' );
|
||||
return $current_site;
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve an object containing information about the requested network.
|
||||
*
|
||||
* @since 3.9.0
|
||||
* @deprecated 4.7.0 Use `get_network()`
|
||||
* @see get_network()
|
||||
*
|
||||
* @internal In 4.6.0, converted to use get_network()
|
||||
*
|
||||
* @param object|int $network The network's database row or ID.
|
||||
* @return WP_Network|false Object containing network information if found, false if not.
|
||||
*/
|
||||
function wp_get_network( $network ) {
|
||||
_deprecated_function( __FUNCTION__, '4.7.0', 'get_network()' );
|
||||
|
||||
$network = get_network( $network );
|
||||
if ( null === $network ) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return $network;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue