wp_throttle_comment_flood( bool $block, int $time_lastcomment, int $time_newcomment ): bool

In this article

Determines whether a comment should be blocked because of comment flood.

Parameters

$blockboolrequired
Whether plugin has already blocked comment.
$time_lastcommentintrequired
Timestamp for last comment.
$time_newcommentintrequired
Timestamp for new comment.

Return

bool Whether comment should be blocked.

Source

function wp_throttle_comment_flood( $block, $time_lastcomment, $time_newcomment ) {
	if ( $block ) { // A plugin has already blocked... we'll let that decision stand.
		return $block;
	}
	if ( ( $time_newcomment - $time_lastcomment ) < 15 ) {
		return true;
	}
	return false;
}

Changelog

VersionDescription
2.1.0Introduced.

User Contributed Notes

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