WP HOOKS
akcjaod 2.7.0

transition_comment_status

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

Opis — z kodu źródłowego

Fires when the comment status is in transition.

Parametry

ParametrTypOpis
$new_statusstringThe new comment status.
$old_statusstringThe old comment status.
$comment\WP_CommentComment object.

Wywołanie

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

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

Popularne w tej kategorii