pre_wp_is_site_initialized хук-фильтр . WP 5.1.0
Filters the check for whether a site is initialized before the database is accessed.
Returning a non-null value will effectively short-circuit the function, returning that value instead.
Использование
add_filter( 'pre_wp_is_site_initialized', 'filter_function_name_7944', 10, 2 ); function filter_function_name_7944( $pre, $site_id ){ // filter... return $pre; }
- $pre(true/false/null)
- The value to return instead.
По умолчанию: null to continue with the check - $site_id(число)
- The site ID that is being checked.
Список изменений
С версии 5.1.0 | Введена. |
Где вызывается хук
pre_wp_is_site_initialized
wp-includes/ms-site.php 946
$pre = apply_filters( 'pre_wp_is_site_initialized', null, $site_id );