ms_site_check filter-hook . WP 3.0.0
Filters checking the status of the current blog.
Usage
add_filter( 'ms_site_check', 'filter_function_name_8637' ); function filter_function_name_8637( $check ){ // filter... return $check; }
- $check(true/false/null)
- Whether to skip the blog status check.
Default: null
Changelog
Since 3.0.0 | Introduced. |
Where the hook is called
ms_site_check
wp-includes/ms-load.php 83
$check = apply_filters( 'ms_site_check', null );