Multisite: After [37918] add support for retrieving custom site properties set by the `site_details` filter.
The behaviour was previously possible with the `blog_details` filter and `get_blog_details()` function. The former is deprecated since [38936]. This change adjusts the magic methods of `WP_Site` to also check if `$key` exists in `WP_Site::get_details()`. Fixes #40458. Built from https://develop.svn.wordpress.org/trunk@40478 git-svn-id: http://core.svn.wordpress.org/trunk@40354 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
ebf0b9e46e
commit
7977451301
|
@ -240,11 +240,15 @@ final class WP_Site {
|
||||||
case 'siteurl':
|
case 'siteurl':
|
||||||
case 'post_count':
|
case 'post_count':
|
||||||
case 'home':
|
case 'home':
|
||||||
|
default: // Custom properties added by 'site_details' filter.
|
||||||
if ( ! did_action( 'ms_loaded' ) ) {
|
if ( ! did_action( 'ms_loaded' ) ) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
$details = $this->get_details();
|
$details = $this->get_details();
|
||||||
return $details->$key;
|
if ( isset( $details->$key ) ) {
|
||||||
|
return $details->$key;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
|
@ -275,6 +279,15 @@ final class WP_Site {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
default: // Custom properties added by 'site_details' filter.
|
||||||
|
if ( ! did_action( 'ms_loaded' ) ) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
$details = $this->get_details();
|
||||||
|
if ( isset( $details->$key ) ) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.8-alpha-40477';
|
$wp_version = '4.8-alpha-40478';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 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