akcjaod 3.4.0
set_comment_cookies
Opis — z kodu źródłowego
Fires after comment cookies are set.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$comment | \WP_Comment | Comment object. |
$user | \WP_User | Comment author's user object. The user may not exist. |
$cookies_consent | bool | Comment author's consent to store cookies. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_action( 'set_comment_cookies', 'twoja_funkcja', 10, 3 );
function twoja_funkcja($param_1, $param_2, $param_3) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_action( 'set_comment_cookies', 'twoja_funkcja', 10, 3 );
function twoja_funkcja($param_1, $param_2, $param_3) {
// Twój kod
}Popularne w tej kategorii