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