wp_auth_check_same_domain filter-hook . WP 3.6.0
Filters whether the authentication check originated at the same domain.
Usage
add_filter( 'wp_auth_check_same_domain', 'filter_function_name_9093' ); function filter_function_name_9093( $same_domain ){ // filter... return $same_domain; }
- $same_domain(true/false)
- Whether the authentication check originated at the same domain.
Changelog
Since 3.6.0 | Introduced. |
Where the hook is called
wp_auth_check_same_domain
wp-includes/functions.php 6615
$same_domain = apply_filters( 'wp_auth_check_same_domain', $same_domain );