Multisite: Deprecate the `blog_details` filter.
`get_site()` has replaced `get_blog_details()` throughout core and is the recommended way to retrieve a current or single site object. The `blog_details` filter is applied when full details are requested from `get_blog_details()`. To ensure backwards compatibility in the switch to `get_site()`, this `blog_details` filter is now applied in `WP_Site::get_details()` and marked as deprecated with a note to rely instead on the `site_details` filter introduced in 4.6. Props flixos90. See #37102. Fixes #38491. Built from https://develop.svn.wordpress.org/trunk@38936 git-svn-id: http://core.svn.wordpress.org/trunk@38879 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
78fc0386af
commit
a545afb331
|
@ -346,6 +346,9 @@ final class WP_Site {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** This filter is documented in wp-includes/ms-blogs.php */
|
||||||
|
$details = apply_filters_deprecated( 'blog_details', array( $details ), '4.7.0', 'site_details' );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Filters a site's extended properties.
|
* Filters a site's extended properties.
|
||||||
*
|
*
|
||||||
|
|
|
@ -240,10 +240,11 @@ function get_blog_details( $fields = null, $get_all = true ) {
|
||||||
* Filters a blog's details.
|
* Filters a blog's details.
|
||||||
*
|
*
|
||||||
* @since MU
|
* @since MU
|
||||||
|
* @deprecated 4.7.0 Use site_details
|
||||||
*
|
*
|
||||||
* @param object $details The blog details.
|
* @param object $details The blog details.
|
||||||
*/
|
*/
|
||||||
$details = apply_filters( 'blog_details', $details );
|
$details = apply_filters_deprecated( 'blog_details', array( $details ), '4.7.0', 'site_details' );
|
||||||
|
|
||||||
wp_cache_set( $blog_id . $all, $details, 'blog-details' );
|
wp_cache_set( $blog_id . $all, $details, 'blog-details' );
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.7-alpha-38935';
|
$wp_version = '4.7-alpha-38936';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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.
|
||||||
|
|
Loading…
Reference in New Issue