wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_throttle_comment_flood › WordPress Function

Since2.1.0
Deprecatedn/a
wp_throttle_comment_flood ( $block, $time_lastcomment, $time_newcomment )
Parameters: (3)
  • (bool) $block Whether plugin has already blocked comment.
    Required: Yes
  • (int) $time_lastcomment Timestamp for last comment.
    Required: Yes
  • (int) $time_newcomment Timestamp for new comment.
    Required: Yes
Returns:
  • (bool) Whether comment should be blocked.
Defined at:
Codex:

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



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;
}