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.

Built from https://develop.svn.wordpress.org/trunk@37699


git-svn-id: http://core.svn.wordpress.org/trunk@37665 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2016-06-14 18:14:27 +00:00
parent 54aafeedbe
commit 6bb600fe25
2 changed files with 4 additions and 4 deletions

View File

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

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '4.6-alpha-37698'; $wp_version = '4.6-alpha-37699';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.