filtrod 1.5.0
pre_comment_author_name
Opis — z kodu źródłowego
Filters the comment author's name cookie before it is set.
When this filter hook is evaluated in wp_filter_comment(), the comment author's name string is passed.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$author_cookie | string | The comment author name cookie. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej
add_filter( 'pre_comment_author_name', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}
// rejestracja funkcji zwrotnej
add_filter( 'pre_comment_author_name', 'twoja_funkcja' );
function twoja_funkcja($param_1) {
// Twój kod
}Popularne w tej kategorii