mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-22 08:11:52 +01:00
Inline documentation for hooks in wp-includes/ms-load.php.
Props nukaga, johnbillion. Fixes #25509. Built from https://develop.svn.wordpress.org/trunk@25732 git-svn-id: http://core.svn.wordpress.org/trunk@25645 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
bb63cf3c40
commit
bc7ea63093
@ -73,8 +73,14 @@ function ms_site_check() {
|
||||
|
||||
$blog = get_blog_details();
|
||||
|
||||
// Allow short-circuiting
|
||||
$check = apply_filters('ms_site_check', null);
|
||||
/**
|
||||
* Filter checking the status of the current blog.
|
||||
*
|
||||
* @since 1.2.1
|
||||
*
|
||||
* @param bool null Whether to skip the blog status check. Default null.
|
||||
*/
|
||||
$check = apply_filters( 'ms_site_check', null );
|
||||
if ( null !== $check )
|
||||
return true;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user