Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: comment_flood_trigger

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
858           if ( $flood_die ) {
859                /**
860                 * Fires before the comment flood message is triggered.
861                 *
862                 * @since 1.5.0
863                 *
864                 * @param int $time_lastcomment Timestamp of when the last comment was posted.
865                 * @param int $time_newcomment  Timestamp of when the new comment was posted.
866                 */
867                do_action( 'comment_flood_trigger', $time_lastcomment, $time_newcomment );
868                if ( true === $avoid_die ) {
869                     return true;
870                } else {
871                     if ( wp_doing_ajax() ) {
872                          die( __('You are posting comments too quickly. Slow down.') );
873                     }
874
875                     wp_die( __( 'You are posting comments too quickly. Slow down.' ), 429 );
876                }