WP HOOKS
filtrod 4.5.0

pre_wp_update_comment_count_now

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

Opis — z kodu źródłowego

Filters a post's comment count before it is updated in the database.

Parametry

ParametrTypOpis
$newint | nullThe new comment count. Default null.
$oldintThe old comment count.
$post_idintPost ID.

Wywołanie

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

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

Popularne w tej kategorii