WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )apply_filters( "hook_name", "what_to_filter" ).Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
| Line | Code |
|---|---|
| 866 | * |
| 867 | * @param string $auth_cookie Authentication cookie. |
| 868 | * @param int $expire The time the login grace period expires as a UNIX timestamp. |
| 869 | * Default is 12 hours past the cookie's expiration time. |
| 870 | * @param int $expiration The time when the authentication cookie expires as a UNIX timestamp. |
| 871 | * Default is 14 days from now. |
| 872 | * @param int $user_id User ID. |
| 873 | * @param string $scheme Authentication scheme. Values include 'auth', 'secure_auth', or 'logged_in'. |
| 874 | */ |
| 875 | do_action( 'set_auth_cookie', $auth_cookie, $expire, $expiration, $user_id, $scheme ); |
| 876 | |
| 877 | /** |
| 878 | * Fires immediately before the logged-in authentication cookie is set. |
| 879 | * |
| 880 | * @since 2.6.0 |
| 881 | * |
| 882 | * @param string $logged_in_cookie The logged-in cookie. |
| 883 | * @param int $expire The time the login grace period expires as a UNIX timestamp. |
| 884 | * Default is 12 hours past the cookie's expiration time. |