wp_auth_check_same_domain хук-фильтр . WP 3.6.0
Filters whether the authentication check originated at the same domain.
Использование
add_filter( 'wp_auth_check_same_domain', 'filter_function_name_4071' ); function filter_function_name_4071( $same_domain ){ // filter... return $same_domain; }
- $same_domain(true/false)
- Whether the authentication check originated at the same domain.
Список изменений
С версии 3.6.0 | Введена. |
Где вызывается хук
wp_auth_check_same_domain
wp-includes/functions.php 6615
$same_domain = apply_filters( 'wp_auth_check_same_domain', $same_domain );