WP HOOKS
filtrod 2.0.5

comment_post_redirect

Args 2Plik wp-comments-post.phpDokumentacja WP ↗

Opis — z kodu źródłowego

Filters the location URI to send the commenter after posting.

Parametry

ParametrTypOpis
$locationstringThe 'redirect_to' URI sent via $_POST.
$comment\WP_CommentComment object.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'comment_post_redirect', 'twoja_funkcja', 10, 2 );

function twoja_funkcja($param_1, $param_2) {
	// Twój kod
}

Popularne w tej kategorii