WP HOOKS
akcjaod 6.2.0

comment_reply_to_unapproved_comment

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

Opis — z kodu źródłowego

Fires when a comment reply is attempted to an unapproved comment.

Parametry

ParametrTypOpis
$comment_post_idintPost ID.
$comment_parentintParent comment ID.

Wywołanie

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

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

Popularne w tej kategorii