WP HOOKS
filtrod 4.7.0

wp_update_comment_data

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

Opis — z kodu źródłowego

Filters the comment data immediately before it is updated in the database.

Note: data being passed to the filter is already unslashed.

Parametry

ParametrTypOpis
$dataarray | \WP_ErrorThe new, processed comment data, or WP_Error.
$commentarrayThe old, unslashed comment data.
$commentarrarrayThe new, raw comment data.

Wywołanie

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

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

Popularne w tej kategorii