apply_filters( 'wp_is_comment_flood', bool $is_flood, string $comment_author_IP, string $comment_author_email, string $comment_date_gmt, bool $avoid_die )

Filters whether a comment is part of a comment flood.


Description Description

The default check is wp_check_comment_flood(). See check_comment_flood_db().


Parameters Parameters

$is_flood

(bool) Is a comment flooding occurring? Default false.

$comment_author_IP

(string) Comment author's IP address.

$comment_author_email

(string) Comment author's email.

$comment_date_gmt

(string) GMT date the comment was posted.

$avoid_die

(bool) Whether to prevent executing wp_die() or die() if a comment flood is occurring.


Top ↑

Source Source

File: wp-includes/comment.php

View on Trac


Top ↑

Changelog Changelog

Changelog
Version Description
4.7.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.