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
760           if ( $flood_die ) {
761                /**
762                 * Fires before the comment flood message is triggered.
763                 *
764                 * @since 1.5.0
765                 *
766                 * @param int $time_lastcomment Timestamp of when the last comment was posted.
767                 * @param int $time_newcomment  Timestamp of when the new comment was posted.
768                 */
769                do_action( 'comment_flood_trigger', $time_lastcomment, $time_newcomment );
770
771                if ( defined('DOING_AJAX') )
772                     die( __('You are posting comments too quickly. Slow down.') );
773
774                wp_die( __( 'You are posting comments too quickly. Slow down.' ), 429 );
775           }
776      }
777 }
778