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:
Drew Jaynes 2013-10-08 20:01:09 +00:00
parent bb63cf3c40
commit bc7ea63093
1 changed files with 8 additions and 2 deletions

View File

@ -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;