Docs: Update the documentation for `get_site()` and the `get_site` filter following the removal of the `$output` parameter in [37652].

Props flixos90.
See #35791.


git-svn-id: https://develop.svn.wordpress.org/trunk@37699 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
DrewAPicture 2016-06-14 18:13:03 +00:00
parent 7ad5c50b12
commit 9decae327d
1 changed files with 3 additions and 3 deletions

View File

@ -479,8 +479,8 @@ function clean_blog_cache( $blog ) {
*
* @global WP_Site $current_blog The current site.
*
* @param WP_Site|int $site Site to retrieve.
* @return WP_Site|array|null Depends on $output value.
* @param WP_Site|int|null $site Optional. Site to retrieve. Default is the current site.
* @return WP_Site|null The site object or null if not found.
*/
function get_site( &$site = null ) {
global $current_blog;
@ -505,7 +505,7 @@ function get_site( &$site = null ) {
*
* @since 4.6.0
*
* @param mixed $_site Site data.
* @param WP_Site $_site Site data.
*/
$_site = apply_filters( 'get_site', $_site );