comment_flood_trigger
Fires before the comment flood message is triggered.
Description
Parameters (2)
- 0. $time_lastcomment (int)
- Timestamp of when the last comment was posted.
- 1. $time_newcomment (int)
- Timestamp of when the new comment was posted.
Usage
- To run the hook, copy the example below.
- // run the action
- do_action( 'comment_flood_trigger', $time_lastcomment, $time_newcomment );
- The following example is for adding a hook callback.
- // define the comment_flood_trigger callback
- function action_comment_flood_trigger( $time_lastcomment, $time_newcomment ) {
- // make action magic happen here...
- };
- // add the action
- add_action( 'comment_flood_trigger', 'action_comment_flood_trigger', 10, 2 );
- To remove a hook callback, use the example below.
- // remove the action
- remove_action( 'comment_flood_trigger', 'action_comment_flood_trigger', 10, 2 );
Defined (1)
The action is defined in the following location(s).
- /wp-includes/comment.php
- do_action( 'comment_flood_trigger', $time_lastcomment, $time_newcomment );