Warning: This function has been deprecated. Use get_current_site() instead.
Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.
get_current_site_name( WP_Network $current_site ): WP_Network
This deprecated function formerly set the site_name property of the $current_site object.
Description
This function simply returns the object, as before.
The bootstrap takes care of setting site_name.
Parameters
-
$current_site
WP_Network Required -
Return
Source
File: wp-includes/ms-load.php
.
View all references
function get_current_site_name( $current_site ) {
_deprecated_function( __FUNCTION__, '3.9.0', 'get_current_site()' );
return $current_site;
}
Changelog
Version | Description |
---|---|
3.9.0 | Use get_current_site() instead. |
3.0.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.
use
get_current_site()->site_name
instead