WP HOOKS
filtrod 1.5.0

pre_comment_author_name

Args 1Plik wp-includes/comment.phpDokumentacja WP ↗

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

ParametrTypOpis
$author_cookiestringThe 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
}

Popularne w tej kategorii