comment_flood_filter
Filters the comment flood status.
Usage
add_filter( 'comment_flood_filter', 'wp_kama_comment_flood_filter', 10, 3 );
/**
* Function for `comment_flood_filter` filter-hook.
*
* @param bool $bool Whether a comment flood is occurring.
* @param int $time_lastcomment Timestamp of when the last comment was posted.
* @param int $time_newcomment Timestamp of when the new comment was posted.
*
* @return bool
*/
function wp_kama_comment_flood_filter( $bool, $time_lastcomment, $time_newcomment ){
// filter...
return $bool;
}
- $bool(true|false)
- Whether a comment flood is occurring.
Default: false - $time_lastcomment(int)
- Timestamp of when the last comment was posted.
- $time_newcomment(int)
- Timestamp of when the new comment was posted.
Changelog
| Since 2.1.0 | Introduced. |
Where the hook is called
wp-includes/comment.php 887
$flood_die = apply_filters( 'comment_flood_filter', false, $time_lastcomment, $time_newcomment );
Where the hook is used in WordPress
wp-includes/default-filters.php 310
add_filter( 'comment_flood_filter', 'wp_throttle_comment_flood', 10, 3 );